Compare commits

..

5 commits

Author SHA1 Message Date
57434d80cf
VKS-Java 0.1.4-SNAPSHOT 2023-07-07 12:48:59 +02:00
32a2909c53
VKS-Java 0.1.3 2023-07-07 12:47:27 +02:00
23cc79aaa8
Update changelog 2023-07-07 12:45:48 +02:00
3f68ae5725
Bump bcpg to 1.75 2023-07-07 12:44:00 +02:00
09f45e86db
Bump jackson-databind to 2.15.2 2023-07-07 12:43:21 +02:00
2 changed files with 7 additions and 6 deletions

View file

@ -6,8 +6,9 @@ SPDX-License-Identifier: Apache-2.0
# Changelog # Changelog
## 0.1.3-SNAPSHOT ## 0.1.3
- Bump `bc-util` to `1.72` - Bump `bc-util` to `1.75`
- Bump `jackson-databind` to `2.15.2`
- Add support for resource bundles for i18n - Add support for resource bundles for i18n
## 0.1.2 ## 0.1.2
@ -23,4 +24,4 @@ SPDX-License-Identifier: Apache-2.0
## 0.1.0 ## 0.1.0
- Initial release - Initial release
- `vks-java`: Client side API to communicate with Verifying Key Servers - `vks-java`: Client side API to communicate with Verifying Key Servers

View file

@ -4,17 +4,17 @@
allprojects { allprojects {
ext { ext {
shortVersion = '0.1.3' shortVersion = '0.1.4'
isSnapshot = true isSnapshot = true
minAndroidSdk = 10 minAndroidSdk = 10
javaSourceCompatibility = 1.8 javaSourceCompatibility = 1.8
bouncycastleVersion = '1.72' bouncycastleVersion = '1.75'
junitVersion = '5.8.2' junitVersion = '5.8.2'
jsrVersion = '3.0.2' jsrVersion = '3.0.2'
slf4jVersion = '1.7.36' slf4jVersion = '1.7.36'
logbackVersion = '1.2.11' logbackVersion = '1.2.11'
lombokVersion = '1.18.24' lombokVersion = '1.18.24'
picocliVersion = '4.6.3' picocliVersion = '4.6.3'
jacksonDataBindVersion = '2.13.2.2' jacksonDataBindVersion = '2.15.2'
} }
} }