Compare commits

...

6 Commits

Author SHA1 Message Date
Paul Schaub e4128a002a
Update changelog 2023-07-07 12:05:07 +02:00
Paul Schaub 9d20355a58
Cert-D-Java 0.2.3-SNAPSHOT 2023-07-07 12:04:56 +02:00
Paul Schaub 26666fa3e6
Cert-D-Java 0.2.2 2023-07-07 12:01:41 +02:00
Paul Schaub 8b14f76add
Fix version name 2023-07-07 12:00:38 +02:00
Paul Schaub 7d67029748
Bump sqlite-jdbc from 3.36.0.3 to 3.42.0.0 2023-07-07 12:00:25 +02:00
Paul Schaub fd43ef27ba
Bump Bouncy Castle to 1.75 2023-07-07 11:53:43 +02:00
2 changed files with 7 additions and 6 deletions

View File

@ -5,8 +5,9 @@ SPDX-License-Identifier: CC0-1.0
# Cert-D-Java Changelog
## 0.2.2-SNAPSHOT
- Bump Bouncy Castle to `1.72`
## 0.2.2
- Bump Bouncy Castle to `1.75`
- Bump `sqlite-jdbc` to `3.42.0.0`
## 0.2.1
- Throw `NoSuchElementException` when querying non-existent certificates

View File

@ -4,16 +4,16 @@
allprojects {
ext {
shortVersion = '0.2.2'
shortVersion = '0.2.3'
isSnapshot = true
minAndroidSdk = 26
animalsnifferSignatureVersion = "$minAndroidSdk:8.0.0_r2"
javaSourceCompatibility = 1.8
bouncycastleVersion = '1.72'
bouncyPgVersion = '1.72.3'
bouncycastleVersion = '1.75'
bouncyPgVersion = "$bouncycastleVersion"
slf4jVersion = '1.7.36'
logbackVersion = '1.2.11'
junitVersion = '5.8.2'
sqliteJdbcVersion = '3.36.0.3'
sqliteJdbcVersion = '3.42.0.0'
}
}