diff --git a/Changelog b/Changelog index 4f0de73..5adc36a 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,12 @@ +kiwix-tools 1.1.0 +================= + +kiwix-serve +----------- + + * Fix bug about handling of absolute url in old zim file. + * All the catalog to be searched by tags. + kiwix-tools 1.0.0 ================= diff --git a/meson.build b/meson.build index 2004c29..24493b6 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-tools', 'cpp', - version : '1.0.0', + version : '1.1.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:'>=4.0.0', static:static_linkage) +kiwixlib_dep = dependency('kiwix', version:'>=4.1.0', static:static_linkage) microhttpd_dep = dependency('libmicrohttpd', static:static_linkage) z_dep = dependency('zlib', static:static_linkage) diff --git a/travis/install_deps.sh b/travis/install_deps.sh index 10e277d..c0fed16 100755 --- a/travis/install_deps.sh +++ b/travis/install_deps.sh @@ -32,7 +32,7 @@ sudo apt-get install -qq python3-pip ${PACKAGES} wget https://bootstrap.pypa.io/get-pip.py python3.5 get-pip.py --user python3.5 -m pip install --user --upgrade pip -python3.5 -m pip install --user meson +python3.5 -m pip install --user meson==0.49.2 # Ninja cd $HOME