From 701829ae11fa670a8f6113c1b7181b9a2ab25127 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 28 May 2019 17:40:09 +0200 Subject: [PATCH] New version 5.1.0 --- ChangeLog | 7 +++++++ meson.build | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1501ca4be..6e168c870 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +kiwix-lib 5.1.0 +=============== + + * Add function to pause, resume and stop downloads. + * Add zim's tags in the opds stream. + * Addapt to new libzim 5.0.0 API. + kiwix-lib 5.0.0 =============== diff --git a/meson.build b/meson.build index 5c25212ed..0e8841ae8 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '5.0.0', + version : '5.1.0', license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -14,7 +14,7 @@ endif thread_dep = dependency('threads') libicu_dep = dependency('icu-i18n', static:static_deps) -libzim_dep = dependency('libzim', version : '>=4.0.0', static:static_deps) +libzim_dep = dependency('libzim', version : '>=5.0.0', static:static_deps) pugixml_dep = dependency('pugixml', static:static_deps) libcurl_dep = dependency('libcurl', static:static_deps)