New version 3.1.0

This commit is contained in:
Matthieu Gautier 2020-04-08 18:01:34 +02:00
parent d24f474dda
commit 6ba6046850
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
kiwix-tools 3.0.4
kiwix-tools 3.1.0
=================
* [SERVER] Add option to block external links

View File

@ -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)