From 174b2363127eb850fddb47f93aaaa8701280d283 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 23 Jan 2019 19:37:07 +0100 Subject: [PATCH] New version 0.9.0 --- Changelog | 15 +++++++++++++++ meson.build | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index 0e2221d..8a61371 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,18 @@ +kiwix-tools 0.9.0 +================= + +* Update README +* Update man pages +* Remove support of external indexes (manage, search, serve) +* Update build system as we don't use ctpp2 anymore +* Update to last kiwix-lib API. + +kiwix-manage +------------ + + * Update usage. + + kiwix-tools 0.8.0 ================= diff --git a/meson.build b/meson.build index 92ba607..b2d13a0 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '0.8.0', + version : '0.9.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:'>=3.0.0', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=4.0.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)