diff --git a/ChangeLog b/ChangeLog index 149b7d108..2945e8228 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +libkiwix 10.0.1 +=============== + + * [server] The catalog search interpret `count=0` as no limit. + This was the case for a long time. This was changed unintentionally + (@veloman-yunkan #686) + * [server] Correctly generere a human friendly title in the server frontend. + (@juuz0 #687, @kelson42 #689) + * [server] Fix download button if there is no url do download from. + (@juuz0 #691) + * Add non-minified isotope.pkdg.js + Needed for debian packaging as we need the source and minified version is + not the source (@legoktm #693) + * [server] Add a tooltip with the full language for the lang tag. + * CI fixes (@kelson42 @legoktm) + libkiwix 10.0.0 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index 01ab812ad..e5b59a829 100644 --- a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle +++ b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle @@ -26,7 +26,7 @@ task writePom { project { groupId 'org.kiwix.kiwixlib' artifactId 'kiwixlib' - version '10.0.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '10.0.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) packaging 'aar' name 'kiwixlib' url 'https://github.com/kiwix/libkiwix' diff --git a/meson.build b/meson.build index a46a959ee..9ae5132bb 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libkiwix', 'cpp', - version : '10.0.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '10.0.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])