Skip to content

Commit

Permalink
Merge pull request #109 from kiwix/release_2.2.1
Browse files Browse the repository at this point in the history
Release 2.2.1
  • Loading branch information
kelson42 authored Jul 2, 2024
2 parents 7bf2836 + cc64d2f commit 15e2d09
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
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

0 comments on commit 15e2d09

Please sign in to comment.