From 6ba6046850eb92f6d23408f38a5de93c970720a1 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 8 Apr 2020 18:01:34 +0200 Subject: [PATCH] New version 3.1.0 --- Changelog | 2 +- meson.build | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Changelog b/Changelog index d6c8789..b84d7cb 100644 --- a/Changelog +++ b/Changelog @@ -1,4 +1,4 @@ -kiwix-tools 3.0.4 +kiwix-tools 3.1.0 ================= * [SERVER] Add option to block external links diff --git a/meson.build b/meson.build index 12a8597..9959db9 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '3.0.3', + version : '3.1.0', license : 'GPL', default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -12,8 +12,8 @@ if static_linkage add_global_link_arguments('-static-libstdc++', '--static', language:'cpp') endif -thread_dep = dependency('threads') -kiwixlib_dep = dependency('kiwix', version:'>=9.0.0', static:static_linkage) +thread_dep = depenidency('threads') +kiwixlib_dep = dependency('kiwix', version:'>=9.1.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage)