From 8c3b51b81cfe068311e268d1f01751e74b3a4138 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 19 Aug 2019 17:18:16 +0200 Subject: [PATCH] New version 6.0.0 --- ChangeLog | 14 ++++++++++++++ meson.build | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5add39896..9b6e23de8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +kiwix-lib 6.0.0 +=============== + + * Move the server code in kiwix-lib (from kiwix-serve). + * Add unit test on regex functions. + * Fix computerAbsolutePath (thread safe, memory leak). + * Correctly set the book's path as valid if we construct the book from a + reader. + * [JNI] Add a method to know if a article is a redirection. + * Do not embed the gtest dependency. + * [JNI] Add a constructor to JNIKiwixString. + * Change order of search of the favicon urls. + * Clean a lot of unecessary includes in headers. (potential "API break") + kiwix-lib 5.2.0 =============== diff --git a/meson.build b/meson.build index 98a22c191..90bc19e41 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '5.2.0', + version : '6.0.0', license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])