Merge pull request #109 from kiwix/release_2.2.1

Release 2.2.1
This commit is contained in:
Kelson 2024-07-02 17:03:37 +02:00 committed by GitHub
commit 15e2d09712
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 5 deletions

View File

@ -1,3 +1,6 @@
2.2.1
* NEW: Use libzim 9.2.2 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/108)
2.2.0 2.2.0
* NEW: Use libzim 9.2.1-1 and libkiwix 13.1.0-3 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/98) * NEW: Use libzim 9.2.1-1 and libkiwix 13.1.0-3 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/98)
* NEW: Added support for SDK 34 (@MohitMaliFtechiz https://github.com/kiwix/java-libkiwix/pull/97) * NEW: Added support for SDK 34 (@MohitMaliFtechiz https://github.com/kiwix/java-libkiwix/pull/97)

View File

@ -19,12 +19,12 @@ ext["sonatypeStagingProfileId"] = properties.getProperty("sonatypeStagingProfile
ext { ext {
set("GROUP_ID", "org.kiwix") set("GROUP_ID", "org.kiwix")
set("ARTIFACT_ID", "libkiwix") set("ARTIFACT_ID", "libkiwix")
set("VERSION", "2.2.0") set("VERSION", "2.2.1")
} }
// Replace these versions with the latest available versions of libkiwix and libzim // Replace these versions with the latest available versions of libkiwix and libzim
ext.libkiwix_version = "13.1.0-3" ext.libkiwix_version = "13.1.0-4"
ext.libzim_version = "9.2.1-1" ext.libzim_version = "9.2.2"
apply from: 'publish.gradle' apply from: 'publish.gradle'
android { android {
@ -75,7 +75,7 @@ android {
abortOnError true abortOnError true
checkAllWarnings = true checkAllWarnings = true
warningsAsErrors true warningsAsErrors true
disable("GradleDependency", "UnknownNullness") disable("GradleDependency", "UnknownNullness", "OldTargetApi")
} }
} }

View File

@ -236,7 +236,7 @@ public class test {
TestArchive archive1 = new TestArchive(zimFile); TestArchive archive1 = new TestArchive(zimFile);
fail("ERROR: Archive created with invalid ZIM file!"); fail("ERROR: Archive created with invalid ZIM file!");
} catch (Exception e) { } catch (Exception e) {
assertEquals("Error opening as a split file: " + zimFile, e.getMessage()); assertEquals("Error opening ZIM file: " + zimFile, e.getMessage());
} }
} }