From e05bd8efd66a8bfc28125c53bd9ccd3cb8111381 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 1 Jul 2020 11:33:30 +0200 Subject: [PATCH] Release 9.2.3 --- 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 e49287101..75fc8cc1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +kiwix-lib 9.2.3 +=============== + + * Add test on byte-range + * Fix compilation on bionic and windows. + * Allow building using debian packaged kainjow-mustache + * Pass `-latomic` compile option for architectures that need it + kiwix-lib 9.2.2 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index beadd537e..021603620 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.2.2' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '9.2.3' + (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 a7f659d8e..696626d86 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '9.2.2', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '9.2.3', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])