Skip to content

Commit

Permalink
Merge branch 'master' into release-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emlun committed May 2, 2022
2 parents a9479b9 + e95b7f6 commit a849a70
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ New features:
attestation trust roots.


== Version 1.12.4 (unreleased) ==
== Version 1.12.4 ==

Deprecated features:

Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ Maven:
<dependency>
<groupId>com.yubico</groupId>
<artifactId>webauthn-server-core</artifactId>
<version>1.12.3</version>
<version>1.12.4</version>
<scope>compile</scope>
</dependency>
----------

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.
Expand Down
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit a849a70

Please sign in to comment.