From 6dcf4ee034f9d329fe41582bd04ee74bf910c70e Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 11 Apr 2022 17:13:58 +0200 Subject: [PATCH] New version 10.1.1 --- ChangeLog | 8 ++++++++ android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle | 2 +- meson.build | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 33ea4639a..e806ba465 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +libkiwix 10.1.1 +=============== + + * Correctly detect the number of article for older zims (<=6) (@mgautier #743) + * [server] Fix fulltext search (@mgautierfr #724) + * [server][internal] New way to build Error message (@veloman-yunkan #732 #738 #744) + * Fix CI (@mgautierfr #736) + libkiwix 10.1.0 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index 6b2c7e4d1..25cc67f3c 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 '10.1.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '10.1.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) packaging 'aar' name 'kiwixlib' url 'https://github.com/kiwix/libkiwix' diff --git a/meson.build b/meson.build index 76fd97da3..30999e0bc 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libkiwix', 'cpp', - version : '10.1.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '10.1.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'])