diff --git a/NEWS b/NEWS index 6030396e0..58509a3a1 100644 --- a/NEWS +++ b/NEWS @@ -80,7 +80,7 @@ New features: attestation trust roots. -== Version 1.12.4 (unreleased) == +== Version 1.12.4 == Deprecated features: diff --git a/README b/README index 88b75b149..3e907680d 100644 --- a/README +++ b/README @@ -25,7 +25,7 @@ Maven: com.yubico webauthn-server-core - 1.12.3 + 1.12.4 compile ---------- @@ -33,7 +33,7 @@ Maven: Gradle: ---------- -compile 'com.yubico:webauthn-server-core:1.12.3' +compile 'com.yubico:webauthn-server-core:1.12.4' ---------- NOTE: You may need additional dependencies with JCA providers to support some signature algorithms. diff --git a/build.gradle b/build.gradle index 43cf0382b..fb27176fb 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { dependencies { classpath 'com.cinnober.gradle:semver-git:2.5.0' classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.3.0' - classpath 'io.github.cosmicsilence:gradle-scalafix:0.1.8' + classpath 'io.github.cosmicsilence:gradle-scalafix:0.1.13' } } plugins { @@ -150,6 +150,12 @@ subprojects { project -> if (project.plugins.hasPlugin('scala')) { project.scalafix { configFile = rootProject.file('scalafix.conf') + + // Work around dependency resolution issues in April 2022 + semanticdb { + autoConfigure = true + version = '4.5.5' + } } dependencies.scalafix('com.github.liancheng:organize-imports_2.13:0.6.0') project.tasks.spotlessApply.dependsOn(project.tasks.scalafix)