diff --git a/CHANGELOG.md b/CHANGELOG.md index a16530a734..3346982627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file ## [Unreleased] +## [1.16.0] - 2026-02-20 + ### Added - PGP key option for authenticating and connecting via SSH. The PGP key does not need to provide a dedicated authentication subkey; the signing subkey and even the primary certification key are equally usable for that purpose. Of course, the authentication key is always picked first, if available, while the signing subkey and the primary key only serve as fallback keys @@ -614,7 +616,8 @@ All notable changes to this project will be documented in this file - Fix elements overlapping. -[unreleased]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.4...HEAD +[unreleased]: https://github.com/agrahn/Android-Password-Store/compare/v1.16.0...HEAD +[1.16.0]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.4...v1.16.0 [1.15.4]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.3...v1.15.4 [1.15.3]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.2...v1.15.3 [1.15.2]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.1...v1.15.2 diff --git a/app/version.properties b/app/version.properties index 868b56e48f..f541af9d71 100644 --- a/app/version.properties +++ b/app/version.properties @@ -2,4 +2,4 @@ # This file was automatically generated by 'versioning-plugin'. DO NOT EDIT MANUALLY. # versioning-plugin.versionCode=11600 -versioning-plugin.versionName=1.16.0-SNAPSHOT +versioning-plugin.versionName=1.16.0 diff --git a/fastlane/metadata/android/en-US/changelogs/11600.txt b/fastlane/metadata/android/en-US/changelogs/11600.txt new file mode 100644 index 0000000000..f709d7a0c3 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/11600.txt @@ -0,0 +1,14 @@ +Added: + +- PGP key option for authenticating and connecting via SSH +- Setting individual subkey passphrases in PGP key manager +- Declare sensitive fields of extra content by adding asterisks around keys or by using `gopass` syntax +- Allow custom port setting for Git via http + +Fixed: + +- App crash when handling expired PGP keys. +- Handling of password items that were encrypted to multiple subkeys +- Enhanced feedback on encryption/decryption success and PGP key availability +- Extra content formatting +- SSH key parsing and connection failures after a recent system update diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 555315bc7b..a9ab218aa4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -77,7 +77,7 @@ thirdparty-fastscroll = "me.zhanghai.android.fastscroll:library:1.3.0" thirdparty-flowbinding-android = { module = "io.github.reactivecircus.flowbinding:flowbinding-android", version.ref = "flowbinding" } # JGit v7 upgrade also raises its minimum Java runtime requirements that we cannot satisfy on Android # noinspection GradleDependency -thirdparty-jgit = "org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r" +thirdparty-jgit = "org.eclipse.jgit:org.eclipse.jgit:7.5.0.202512021534-r" thirdparty-kotlinResult = { module = "com.michael-bull.kotlin-result:kotlin-result", version.ref = "kotlinResult" } thirdparty-kotlinResult-coroutines = { module = "com.michael-bull.kotlin-result:kotlin-result-coroutines", version.ref = "kotlinResult" } thirdparty-leakcanary-plumber = "com.squareup.leakcanary:plumber-android-startup:2.14"