Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.2.1 #109

Merged
merged 6 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
* 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)
Expand Down
8 changes: 4 additions & 4 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ ext["sonatypeStagingProfileId"] = properties.getProperty("sonatypeStagingProfile
ext {
set("GROUP_ID", "org.kiwix")
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
ext.libkiwix_version = "13.1.0-3"
ext.libzim_version = "9.2.1-1"
ext.libkiwix_version = "13.1.0-4"
ext.libzim_version = "9.2.2"

apply from: 'publish.gradle'
android {
Expand Down Expand Up @@ -75,7 +75,7 @@ android {
abortOnError true
checkAllWarnings = true
warningsAsErrors true
disable("GradleDependency", "UnknownNullness")
disable("GradleDependency", "UnknownNullness", "OldTargetApi")
}
}

Expand Down
2 changes: 1 addition & 1 deletion lib/src/test/test.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testNonExistant() {
TestArchive archive1 = new TestArchive(zimFile);
fail("ERROR: Archive created with invalid ZIM file!");
} catch (Exception e) {
assertEquals("Error opening as a split file: " + zimFile, e.getMessage());
assertEquals("Error opening ZIM file: " + zimFile, e.getMessage());
}
}

Expand Down