From fbd4332c870b541d459a9f1110b653e469402f9a Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 17 Nov 2020 15:42:13 +0100 Subject: [PATCH] New version 9.4.1 --- ChangeLog | 8 ++++++++ android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle | 2 +- meson.build | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 08440717e..682ca57cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +kiwix-lib 9.4.1 +=============== + + * Fix `M/Counter` parsing. + * [SERVER] Adjust body padding-top for taskbar + * Fix potential crash when stoping a server not started. + * Various fix in build system and the CI. + kiwix-lib 9.4.0 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index a11d52fa0..b0a31d1b3 100644 --- a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle +++ b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle @@ -26,7 +26,7 @@ task writePom { project { groupId 'org.kiwix.kiwixlib' artifactId 'kiwixlib' - version '9.4.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '9.4.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) packaging 'aar' name 'kiwixlib' url 'https://github.com/kiwix/kiwix-lib' diff --git a/meson.build b/meson.build index 184232a84..76165a369 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '9.4.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '9.4.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -25,7 +25,7 @@ endif thread_dep = dependency('threads') libicu_dep = dependency('icu-i18n', static:static_deps) -libzim_dep = dependency('libzim', version : '>=6.1.8', static:static_deps) +libzim_dep = dependency('libzim', version : '>=6.3.0', static:static_deps) pugixml_dep = dependency('pugixml', static:static_deps) libcurl_dep = dependency('libcurl', static:static_deps) microhttpd_dep = dependency('libmicrohttpd', static:static_deps)