Skip to content

Commit

Permalink
New version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Jan 13, 2022
1 parent d2e162d commit 4fe469f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
===============

Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Maintainer: Kiwix team <kiwix@kiwix.org>
Build-Depends: debhelper-compat (= 13),
meson,
pkg-config,
libzim-dev (>= 6.3.0),
libzim-dev (>= 7.2.0),
libmagic-dev,
zlib1g-dev,
libgumbo-dev,
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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'])

Expand All @@ -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')
Expand Down

0 comments on commit 4fe469f

Please sign in to comment.