From 2fe5ec1d7c22baff62f39a0df51e79c7b972f2ef Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 31 Oct 2018 14:44:58 +0100 Subject: [PATCH] New version 0.7.0 --- Changelog | 18 ++++++++++++++++++ meson.build | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 7d38dd5..b34812a 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,21 @@ +kiwix-tools 0.7.0 +================= + + * Adapt to kiwix-lib new API + +kiwix-serve +----------- + + * Dumps only valid books in the opdsfeed. + * Allow the opds feed to be filtered by lang and paginated. + +kiwix-manage +------------ + + * Add a download command to download a remote book locally + * Book are referenced by bookId not index. + * No more indexType option as it is always XAPIAN. + kiwix-tools 0.6.1 ================= diff --git a/meson.build b/meson.build index 1f831c5..81e3f5b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '0.6.1', + version : '0.7.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -11,7 +11,7 @@ if static_linkage endif thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', version:'>=2.0.2', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=3.0.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)