diff --git a/ChangeLog b/ChangeLog index 1386d7ad..81542ce6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ -zim-toosl 3.4.1 +zim-tools 3.4.2 +=============== + + * zimwriterfs: Support short option `-a` (tags) (@kelson42 #409) + * zimwriterfs: "Name", "Title" and "LongDescription" are mandatory metadata (@kelson42 #410 #411) + * zimcheck: Do not run check on content if zim integrity test is failing (@mgautierfr #413) + * zimrecreate: Do not try to add twice metadata (and fix return code) (@mgautiefr #419) + +zim-tools 3.4.1 =============== * zimsplit: stop creating trailing empty chunk (@mgautierfr #402) diff --git a/meson.build b/meson.build index 4e1092a4..49f8f748 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('zim-tools', ['c', 'cpp'], - version : '3.4.1', + version : '3.4.2', license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++17', 'werror=true']) @@ -19,7 +19,7 @@ if static_linkage endif endif -libzim_dep = dependency('libzim', version:'>=9.1.0', static:static_linkage) +libzim_dep = dependency('libzim', version:'>=9.2.2', static:static_linkage) libzim_dep = dependency('libzim', version:'<10.0.0', static:static_linkage) with_xapian_support = compiler.has_header_symbol('zim/zim.h', 'LIBZIM_WITH_XAPIAN')