From 5bc8b55fb12130dfc9ddfe3709fe86930433a615 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 6 May 2022 14:45:41 +0200 Subject: [PATCH] New version 7.2.1 --- ChangeLog | 24 ++++++++++++++++++++++++ meson.build | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5bbf5e1e5..3b88043b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,27 @@ +libzim 7.2.1 +============ + + * Make suggestions diacritics insensitive (@veloman-yunkan #691) + * [Writer] Raise an exception when user add a invalid entry (duplicate path) + instead of printing a message (which can be too easily missed) and be buggy + (@mautierfr #690) + * [Writer] Do not `hasIndexData` and `getTitle` in the main thread when we add + an entry (@mgautier #684) + * [Writer] Properly clean and stop the writer even if user hasn't call + `finishZimCreation` (The created zim file is still invalid) (@veloman-yunkan #666) + * Add a default argument value for mimetype of `creator::addMetadata` + (@kelvinhammond #678) + * Use a more informative message in exception when we cannot open a file + (@veloman-yunkan #667 #668) + * Use a generic dirent lookup to search by title (@veloman-yunkan #651) + * Various improvements: + - CI, Packaging : Stop creating packages for Ubuntu Hirsute (@legoktm #664) + - Update Readme (@TheDuchy #660) + - Fix cross-compilation host machine detection (@kelson42 #665) + - Fix macos/ios compilation (@mgautierfr #672) + - Update documentation @mgautierfr #677, @veloman-yunkan #682 + + libzim 7.2.0 ============ diff --git a/meson.build b/meson.build index 87a82dff5..8d5609b02 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libzim', ['c', 'cpp'], - version : '7.2.0', + version : '7.2.1', license : 'GPL2', default_options : ['c_std=c11', 'cpp_std=c++11'])