diff --git a/ChangeLog b/ChangeLog index 2945e8228..33ea4639a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +libkiwix 10.1.0 +=============== + + This release is an important one as it fixes a Xss vulnerability introduced + in libkiwix 10.0.0 + + * [SECURITY] Fix a Xss attack vulnerability (introduced in 10.0.0) (@juuz0 #721) + * [server] Add a option to set a limit on the number of connexion per IP (@kelson42 #700) + * [server] Do not display a lang tag in the UI if the book has no language (@juuz0 #706) + * [server] Add the book title associated to a search results (@thavelick #705, @mgautierfr #718) + * Add `dc:issued` to opds output stream (@veloman-yunkan #715) + * Add handling of several languages not provided by ICU (@juuz0 #701) + * [server] Add a caching system for search and suggestion (@maneeshpm #620) + * Fix cross-compilation (@kelson42 #703) + * Add unit-testing of suggestions and error pages (@veloman-yunkan #709 #710 #727) + * Better testing system of html response (@veloman-yunkan #725) + libkiwix 10.0.1 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index e5b59a829..6b2c7e4d1 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.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '10.1.0' + (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 05c063907..76fd97da3 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libkiwix', 'cpp', - version : '10.0.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '10.1.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])