From 2aebffb27c557e31c14af284ca336f36082c24e0 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 26 Sep 2019 15:56:30 +0200 Subject: [PATCH] New version 8.1.0 --- 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 7c60d08ca..365ec2d44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +kiwix-lib 8.1.0 +=============== + + * Fix pathTools manipulation. + * Add missing implementation of getArticleCount and getMediaCount on android. + * Correctly convert windows path to utf8. + * Add code coverage in the CI + kiwix-lib 8.0.1 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index 0ccd6b5cd..911e1d382 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 '8.0.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '8.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 b6c5fe1a5..e3eee2521 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '8.0.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '8.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'])