From b7a6f78150075643ec3066a7fe900d5411c59f3c Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 15 Jun 2022 14:25:48 +0200 Subject: [PATCH] New version 3.3.0 --- Changelog | 22 ++++++++++++++++++++++ meson.build | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/Changelog b/Changelog index d2ef9ec..8b36658 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,25 @@ +kiwix-tools 3.3.0 +================= + + * Remove kiwix-read tool (@veloman-yunkan #535) + +kiwix-serve +----------- + + * Add an option to limit the number of connections for a same IP (@nikhil #534) + * Add an option to limit the number of zim in a multizim fulltext search (@mgautierfr #558) + +kiwix-search +------------ + + * Remove usage of libkiwix's deprecated api (@veloman-yunkan #535) + +kiwix-manage +------------ + + * Correctly return a value !0 if something went wrong (@mgautierfr #553) + + kiwix-tools 3.2.0 ================= diff --git a/meson.build b/meson.build index bfc4f01..b6e3b66 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '3.2.0', + version : '3.3.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -13,7 +13,7 @@ if static_linkage endif thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', version:'>=10.0.0', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=11.0.0', static:static_linkage) libzim_dep = dependency('libzim', version:'>=7.2.0', static:static_linkage) all_deps = [thread_dep, kiwixlib_dep, libzim_dep]