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
+
1
4
2.2.0
2
5
* NEW: Use libzim 9.2.1-1 and libkiwix 13.1.0-3 (@kelson42 https://github.com/kiwix/java-libkiwix/pull/98)
3
6
* 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
19
19
ext {
20
20
set(" GROUP_ID" , " org.kiwix" )
21
21
set(" ARTIFACT_ID" , " libkiwix" )
22
- set(" VERSION" , " 2.2.0 " )
22
+ set(" VERSION" , " 2.2.1 " )
23
23
}
24
24
25
25
// 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 "
28
28
29
29
apply from : ' publish.gradle'
30
30
android {
@@ -75,7 +75,7 @@ android {
75
75
abortOnError true
76
76
checkAllWarnings = true
77
77
warningsAsErrors true
78
- disable(" GradleDependency" , " UnknownNullness" )
78
+ disable(" GradleDependency" , " UnknownNullness" , " OldTargetApi " )
79
79
}
80
80
}
81
81
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ public void testNonExistant() {
236
236
TestArchive archive1 = new TestArchive (zimFile );
237
237
fail ("ERROR: Archive created with invalid ZIM file!" );
238
238
} catch (Exception e ) {
239
- assertEquals ("Error opening as a split file: " + zimFile , e .getMessage ());
239
+ assertEquals ("Error opening ZIM file: " + zimFile , e .getMessage ());
240
240
}
241
241
}
242
242
You can’t perform that action at this time.
0 commit comments