File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1+ 2.2.1
2+ * NEW: Use libzim 9.2.2 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/108)
3+
142.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)
Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ ext["sonatypeStagingProfileId"] = properties.getProperty("sonatypeStagingProfile
1919ext {
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
2929apply from : ' publish.gradle'
3030android {
@@ -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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments