diff --git a/Changelog b/Changelog index 8b366588..84578b27 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,23 @@ +kiwix-tools 3.4.0 +================= + + * Remove last reference to kiwix-read tool (@legoktm #569) + +kiwix-serve +----------- + + * Fix broken indentation in usage (@kelson42 #560) + * Exit if wrong arguments are passed (@kelson42 #567) + * Do not allow multiple values for same option (@juuz0 #564) + * Fix default location of "rootLocation" (@rgaudin #571) + * [DOCKER] Change default port to 8080 (@neyder #581) + * [DOCKER] Simplify dockerfile (@rgaudin #582) + +kiwix-manage +------------ + + * Fix man page (@kelson42 #576) + kiwix-tools 3.3.0 ================= @@ -6,7 +26,7 @@ kiwix-tools 3.3.0 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 connections for a same IP (@juuz0 #534) * Add an option to limit the number of zim in a multizim fulltext search (@mgautierfr #558) kiwix-search @@ -34,7 +54,7 @@ kiwix-tools 3.2.0 kiwix-serve ----------- - * Print the url on which a user can connect to on startup (@nikhil #499 #522) + * Print the url on which a user can connect to on startup (@juuz0 #499 #522) * Reload library on SIGHUP signal (@veloman-yunkan #497) * Add a option `--monitorLibrary` to monitor and automically reload the library (@veloman-yunkan #503) diff --git a/meson.build b/meson.build index b6e3b666..0c7baaaf 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '3.3.0', + version : '3.4.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -13,8 +13,8 @@ if static_linkage endif thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', version:'>=11.0.0', static:static_linkage) -libzim_dep = dependency('libzim', version:'>=7.2.0', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=12.0.0', static:static_linkage) +libzim_dep = dependency('libzim', version:'>=8.1.0', static:static_linkage) all_deps = [thread_dep, kiwixlib_dep, libzim_dep]