mirror of https://github.com/kiwix/libkiwix.git
new version 8.0.0
This commit is contained in:
parent
57a2b98e7a
commit
891666b8c4
|
@ -1,3 +1,12 @@
|
||||||
|
kiwix-lib 8.0.0
|
||||||
|
===============
|
||||||
|
|
||||||
|
* Add new methods to get all (and new) metadata from the zim file.
|
||||||
|
* Add methods to get the value of a specific tag.
|
||||||
|
* [API Change] Convert tags value to the new convention.
|
||||||
|
* [API Change] Rename `getMatatag` method to `getMetadata`
|
||||||
|
* [ABI Change] Correctly detect executable path in appimage.
|
||||||
|
|
||||||
kiwix-lib 7.0.0
|
kiwix-lib 7.0.0
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ task writePom {
|
||||||
project {
|
project {
|
||||||
groupId 'org.kiwix.kiwixlib'
|
groupId 'org.kiwix.kiwixlib'
|
||||||
artifactId 'kiwixlib'
|
artifactId 'kiwixlib'
|
||||||
version '7.0.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
version '8.0.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
||||||
packaging 'aar'
|
packaging 'aar'
|
||||||
name 'kiwixlib'
|
name 'kiwixlib'
|
||||||
url 'https://github.com/kiwix/kiwix-lib'
|
url 'https://github.com/kiwix/kiwix-lib'
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('kiwix-lib', 'cpp',
|
project('kiwix-lib', 'cpp',
|
||||||
version : '7.0.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
version : '8.0.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
||||||
license : 'GPL',
|
license : 'GPL',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue