Skip to content

Commit 15e2d09

Browse files
authored
Merge pull request #109 from kiwix/release_2.2.1
Release 2.2.1
2 parents 7bf2836 + cc64d2f commit 15e2d09

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2.2.1
2+
* NEW: Use libzim 9.2.2 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/108)
3+
14
2.2.0
25
* NEW: Use libzim 9.2.1-1 and libkiwix 13.1.0-3 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/98)
36
* NEW: Added support for SDK 34 (@MohitMaliFtechiz https://github.com/kiwix/java-libkiwix/pull/97)

lib/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ ext["sonatypeStagingProfileId"] = properties.getProperty("sonatypeStagingProfile
1919
ext {
2020
set("GROUP_ID", "org.kiwix")
2121
set("ARTIFACT_ID", "libkiwix")
22-
set("VERSION", "2.2.0")
22+
set("VERSION", "2.2.1")
2323
}
2424

2525
// Replace these versions with the latest available versions of libkiwix and libzim
26-
ext.libkiwix_version = "13.1.0-3"
27-
ext.libzim_version = "9.2.1-1"
26+
ext.libkiwix_version = "13.1.0-4"
27+
ext.libzim_version = "9.2.2"
2828

2929
apply from: 'publish.gradle'
3030
android {
@@ -75,7 +75,7 @@ android {
7575
abortOnError true
7676
checkAllWarnings = true
7777
warningsAsErrors true
78-
disable("GradleDependency", "UnknownNullness")
78+
disable("GradleDependency", "UnknownNullness", "OldTargetApi")
7979
}
8080
}
8181

lib/src/test/test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public void testNonExistant() {
236236
TestArchive archive1 = new TestArchive(zimFile);
237237
fail("ERROR: Archive created with invalid ZIM file!");
238238
} catch (Exception e) {
239-
assertEquals("Error opening as a split file: " + zimFile, e.getMessage());
239+
assertEquals("Error opening ZIM file: " + zimFile, e.getMessage());
240240
}
241241
}
242242

0 commit comments

Comments
 (0)