From 4fe469f11343334f8b317399b6b1ff7613fd2ec3 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 13 Jan 2022 15:18:20 +0100 Subject: [PATCH] New version 3.1.0 --- ChangeLog | 13 +++++++++++++ debian/control | 2 +- meson.build | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6de9a538..23900db8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +zim-tools 3.1.0 +=============== + + * zimcheck: Fix json output (Use `"` instead of `'`) for strings + (@mgautierfr #281) + * zimcheck: Avoid undefined behavior (and crash) when testing link's content. + (@mgautierfr #280) + * The `--version` option now also print the version of all dependencies (@kelson42, #275) + * zimcheck: Add the zimcheck version in the output log (@kelson42, #274) + * CI: Readd build on Ubuntu Impish (@kelson42, #267) + * CI: Add build on Ubuntu Jammy (@legoktm, #273) + + zim-tools 3.0.0 =============== diff --git a/debian/control b/debian/control index 4e49985d..4c21012c 100644 --- a/debian/control +++ b/debian/control @@ -5,7 +5,7 @@ Maintainer: Kiwix team Build-Depends: debhelper-compat (= 13), meson, pkg-config, - libzim-dev (>= 6.3.0), + libzim-dev (>= 7.2.0), libmagic-dev, zlib1g-dev, libgumbo-dev, diff --git a/meson.build b/meson.build index 7fb60198..acd158df 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('zim-tools', ['c', 'cpp'], - version : '3.0.0', # Also change zimcheck_version in tests + version : '3.1.0', license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) @@ -16,7 +16,7 @@ if static_linkage endif endif -libzim_dep = dependency('libzim', version : '>=7.0.0', static:static_linkage) +libzim_dep = dependency('libzim', version : '>=7.2.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')