diff --git a/Changelog b/Changelog index 680756c..1b74a5e 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,22 @@ +kiwix-tools 3.8.0 +================= + + * Kiwix server + - Improve message when server is running on standard port (@vighnesh-sawant #763) + - Update container base image to latest Alpline version (@yashgoyal0110 #771) + - Container image to use unprivileged user (@Sedetisu #755) + - Empty urlRootLocation doesn't disable book preview links anymore (@veloman-yunkan #1224) + - Add support of IPv6 (@sgourdas #673 #704) + - Popups are allowed to escape the browser sandbox (@veloman-yunkan #1208) + + * Other + - Stop publishing on Ubuntu 20.04 PPA (@kelson42 #748) + - Use Docopt for command line argument parsing (@mgautierfr #695) + + * Compilation & Packaging + - Based on libkiwix 14.1.0 (@kelson42 #773) + - Improve CI/CD (@kelson42 #681 #698 #702 #705 #720 #722, @mgautierfr #695) + kiwix-tools 3.7.0 ================= diff --git a/meson.build b/meson.build index 8b1454d..7bf2646 100644 --- a/meson.build +++ b/meson.build @@ -21,7 +21,7 @@ endif thread_dep = dependency('threads') libzim_dep = dependency('libzim', version:['>=9.0.0', '<10.0.0'], static:static_linkage) -libkiwix_dep = dependency('libkiwix', version:['>=14.0.0', '<15.0.0'], static:static_linkage) +libkiwix_dep = dependency('libkiwix', version:['>=14.1.0', '<15.0.0'], static:static_linkage) libdocopt_dep = dependency('docopt', static:static_linkage) all_deps = [thread_dep, libkiwix_dep, libzim_dep, libdocopt_dep]