From c5bd0cf2a2d26cd977d6127180f594750675093e Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Wed, 24 Apr 2024 08:56:38 -0500 Subject: [PATCH 1/3] Bump libraryVersion for README update --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0163492..f996e56 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ We welcome contributions, to contribute to SQLCipher for Android, a [contributor Add a local reference to the local library and dependency: ```groovy -implementation files('libs/sqlcipher-android-4.5.6-release.aar') +implementation files('libs/sqlcipher-android-4.5.7-release.aar') implementation 'androidx.sqlite:sqlite:2.2.0' ``` or source a Community edition build from Maven Central: ```groovy -implementation 'net.zetetic:sqlcipher-android:4.5.6@aar' +implementation 'net.zetetic:sqlcipher-android:4.5.7@aar' implementation 'androidx.sqlite:sqlite:2.2.0' ``` diff --git a/build.gradle b/build.gradle index a8815c9..c524c8f 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ project.ext { if(project.hasProperty('sqlcipherAndroidVersion') && "${sqlcipherAndroidVersion}") { libraryVersion = "${sqlcipherAndroidVersion}" } else { - libraryVersion = "4.5.6" + libraryVersion = "4.5.7" } minSdkVersion = 21 androidXSQLiteVersion = "2.2.0" From 847befafb443a387cdf0c722577017fe8e136809 Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Tue, 21 May 2024 11:53:09 -0500 Subject: [PATCH 2/3] Adjust test to reference 4.6.0 --- .../zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java index e2da7f1..2afa9f5 100644 --- a/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java +++ b/sqlcipher/src/androidTest/java/net/zetetic/database/sqlcipher_cts/SQLCipherVersionTest.java @@ -17,6 +17,6 @@ public void shouldExtractLibraryCipherVersion() { cipherVersion = cursor.getString(0); cursor.close(); } - assertThat(cipherVersion, containsString("4.5.6")); + assertThat(cipherVersion, containsString("4.6.0")); } } From e1eae3c20909fb974c990441b14ff0c874b60133 Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Tue, 21 May 2024 11:53:28 -0500 Subject: [PATCH 3/3] Bump version to 4.6.0 for release --- README.md | 4 ++-- build.gradle | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f996e56..77fda99 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ We welcome contributions, to contribute to SQLCipher for Android, a [contributor Add a local reference to the local library and dependency: ```groovy -implementation files('libs/sqlcipher-android-4.5.7-release.aar') +implementation files('libs/sqlcipher-android-4.6.0-release.aar') implementation 'androidx.sqlite:sqlite:2.2.0' ``` or source a Community edition build from Maven Central: ```groovy -implementation 'net.zetetic:sqlcipher-android:4.5.7@aar' +implementation 'net.zetetic:sqlcipher-android:4.6.0@aar' implementation 'androidx.sqlite:sqlite:2.2.0' ``` diff --git a/build.gradle b/build.gradle index c524c8f..3300e32 100644 --- a/build.gradle +++ b/build.gradle @@ -28,7 +28,7 @@ project.ext { if(project.hasProperty('sqlcipherAndroidVersion') && "${sqlcipherAndroidVersion}") { libraryVersion = "${sqlcipherAndroidVersion}" } else { - libraryVersion = "4.5.7" + libraryVersion = "4.6.0" } minSdkVersion = 21 androidXSQLiteVersion = "2.2.0"