diff --git a/NEWS b/NEWS index cc0538fa..151d6f36 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +* Version 2.5.0 (released 2024-03-25) + ** fido module: + - added support for authenticatorBioEnrollment + - fixed setMinPinLength implementation + - fixed handling of UserVerificationRequirement.DISCOURAGED + ** management module: + - deprecated constructors of DeviceInfo + - added DeviceInfo.Builder which replaces deprecated constructors + - added support for reading all pages of YubiKey configuration + - added support for device wide reset + ** general updates: + - updated build dependencies and libraries * Version 2.4.0 (released 2023-11-21) ** fido module (new): - support for WebAuthn Level 2 diff --git a/build.gradle b/build.gradle index 356110d5..efe0e0a3 100755 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:8.3.0' + classpath 'com.android.tools.build:gradle:8.3.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -34,7 +34,7 @@ allprojects { } subprojects { - version = '2.4.1-SNAPSHOT' + version = '2.5.0' ext.pomName = "Yubico YubiKit ${project.name.capitalize()}" diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 5bd92664..f70718a3 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -10,5 +10,5 @@ repositories { dependencies { implementation 'com.github.spotbugs.snom:spotbugs-gradle-plugin:6.0.8' - implementation 'com.android.tools.build:gradle:8.3.0' + implementation 'com.android.tools.build:gradle:8.3.1' } \ No newline at end of file