From d0cfde1569ff7172f6fc45ab4e5ad2f23065a499 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 7 Sep 2022 11:27:18 +0200 Subject: [PATCH 1/2] New version 3.1.2 --- ChangeLog | 14 ++++++++++++++ meson.build | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 7329963a..bcca60dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +zim-tools 3.1.2 +=============== + + * zimdump: Create correct redirection when dumping zim with old namespace + scheme (@mgautierfr #306) + * zimcheck: Correctly handle protocol-relative absolute url as absolute url (@veloman-yunkan #307) + * zimcheck: Fix `J` flag at arguments parsing (@JameelKaisar #320) + * zimcheck: Limit the size of the task queue, which reduce the memory needed (@veloman-yunkan #309) + * zimcheck: Better and faster redirect loop check (@veloman-yunkan #312) + * zimdump: Improve indentation output of `zimdump list` (@kelson42 #301) + * zimwriterfs: Improve an error message (@kelson42 #302) + * CI: Fix CI compilation (@mgautierfr #313) + + zim-tools 3.1.1 =============== diff --git a/meson.build b/meson.build index 06e0cece..014a2b9b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('zim-tools', ['c', 'cpp'], - version : '3.1.1', + version : '3.1.2', license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) From 0e34e2854ca1a3c16123e3208b53347d8f627e55 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 7 Sep 2022 13:58:14 +0200 Subject: [PATCH 2/2] zim-tools need libzim >= 8.0.0 --- debian/control | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 36e96d86..c3208996 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Kiwix team Build-Depends: debhelper-compat (= 13), meson, pkg-config, - libzim-dev (>= 7.2.0~), + libzim-dev (>= 8.0.0~), libmagic-dev, zlib1g-dev, libgumbo-dev, diff --git a/meson.build b/meson.build index 014a2b9b..0156a689 100644 --- a/meson.build +++ b/meson.build @@ -16,7 +16,7 @@ if static_linkage endif endif -libzim_dep = dependency('libzim', version : '>=7.2.0', static:static_linkage) +libzim_dep = dependency('libzim', version : '>=8.0.0', static:static_linkage) with_xapian_support = compiler.has_header_symbol('zim/zim.h', 'LIBZIM_WITH_XAPIAN') find_library_in_compiler = meson.version().version_compare('>=0.31.0')