From 12a066034202aaa41c3deeab6e9f020a725f39ef Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 8 Apr 2020 15:38:25 +0200 Subject: [PATCH] New version 9.1.0 --- ChangeLog | 9 +++++++++ android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle | 2 +- meson.build | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 39dda357e..d56a26d63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +kiwix-lib 9.1.0 +=============== + + * [JAVA] Add a method to get the size of an article. + * Add a new method to the libray to get the book by path. + * Add a option to make the server blocks external link. + Links are intercepted by js an redirected to a "portail" page. + * [ODPS] Correctly handle book's articleCount and mediaCount. + kiwix-lib 9.0.1 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index c5d3d8143..1315b99e0 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.0.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '9.1.0' + (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 104c29e07..172e5e9cb 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '9.0.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '9.1.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])