From 2a0314766264354434f9833ebd27b585b05cdec2 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 14 Jun 2018 19:09:47 +0200 Subject: [PATCH] New version 2.0.1 --- ChangeLog | 8 ++++++++ meson.build | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 934b6f9b9..6c299070e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +kiwix-lib 2.0.1 +=============== + + * Fix parsing of url. + * Remove unused static resources. + * Correctly decode reserved characters in URLs. + * Explicitly use icu namespace to allow use of packaged icu lib. + kiwix-lib 2.0.0 =============== diff --git a/meson.build b/meson.build index 18ccef9c8..63643228a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '2.0.0', + version : '2.0.1', license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -10,7 +10,7 @@ static_deps = get_option('android') or get_option('default_library') == 'static' thread_dep = dependency('threads') libicu_dep = dependency('icu-i18n', static:static_deps) -libzim_dep = dependency('libzim', version : '>=3.3.0', static:static_deps) +libzim_dep = dependency('libzim', version : '>=4.0.0', static:static_deps) pugixml_dep = dependency('pugixml', static:static_deps) libaria2_dep = dependency('libaria2', static:static_deps)