mirror of https://github.com/kiwix/libkiwix.git
New version 9.1.1
This commit is contained in:
parent
5d98a6964e
commit
8fc42558d3
|
@ -1,3 +1,8 @@
|
||||||
|
kiwix-lib 9.1.1
|
||||||
|
===============
|
||||||
|
|
||||||
|
* Fix the detection of the dataDirectory on windows.
|
||||||
|
|
||||||
kiwix-lib 9.1.0
|
kiwix-lib 9.1.0
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ task writePom {
|
||||||
project {
|
project {
|
||||||
groupId 'org.kiwix.kiwixlib'
|
groupId 'org.kiwix.kiwixlib'
|
||||||
artifactId 'kiwixlib'
|
artifactId 'kiwixlib'
|
||||||
version '9.1.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION)
|
version '9.1.1' + (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 : '9.1.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
version : '9.1.1', # 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'])
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ endif
|
||||||
|
|
||||||
thread_dep = dependency('threads')
|
thread_dep = dependency('threads')
|
||||||
libicu_dep = dependency('icu-i18n', static:static_deps)
|
libicu_dep = dependency('icu-i18n', static:static_deps)
|
||||||
libzim_dep = dependency('libzim', version : '>=6.1.0', static:static_deps)
|
libzim_dep = dependency('libzim', version : '>=6.1.1', static:static_deps)
|
||||||
pugixml_dep = dependency('pugixml', static:static_deps)
|
pugixml_dep = dependency('pugixml', static:static_deps)
|
||||||
libcurl_dep = dependency('libcurl', static:static_deps)
|
libcurl_dep = dependency('libcurl', static:static_deps)
|
||||||
microhttpd_dep = dependency('libmicrohttpd', static:static_deps)
|
microhttpd_dep = dependency('libmicrohttpd', static:static_deps)
|
||||||
|
|
Loading…
Reference in New Issue