diff --git a/ChangeLog b/ChangeLog index 5d7de4517..cf3ba90dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +kiwix-lib 1.1.0 +=============== + + * Correct the name of kiwix-lib (from `kiwixlib`) in meson.build to generate + dist archive with the correct name. + * Libzim version need to be at least 3.2.0 + kiwix-lib 1.1.0 =============== diff --git a/meson.build b/meson.build index 3f1f24a91..d7bf521d8 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ -project('kiwixlib', 'cpp', - version : '1.1.0', +project('kiwix-lib', 'cpp', + version : '1.1.1', license : 'GPL', default_options : ['c_std=c11', 'cpp_std=c++11']) @@ -10,7 +10,7 @@ static_deps = get_option('android') or get_option('default_library') == 'static' thread_dep = dependency('threads') libicu_dep = dependency('icu-i18n', static:static_deps) -libzim_dep = dependency('libzim', version : '>=3.0.0', static:static_deps) +libzim_dep = dependency('libzim', version : '>=3.2.0', static:static_deps) pugixml_dep = dependency('pugixml', static:static_deps) ctpp2_include_path = ''