Skip to content

Commit

Permalink
Merge pull request #668 from kiwix/prepare-release-3.7.0
Browse files Browse the repository at this point in the history
Prepare release 3.7.0
  • Loading branch information
kelson42 authored Mar 13, 2024
2 parents 331743e + e37af51 commit fcbb4a5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
kiwix-tools 3.7.0
=================

* Fixed ZIM name vs Book name confusion in documentation (@veloman-yunkan #663)
* Fixes compilation dependencies to rely on appropriate version (@kelson42 #667)
* New --skipInvalid Kiwix Server command line option (@schuellerf @kelson42 #666)

kiwix-tools 3.6.0
=================

Expand Down
4 changes: 2 additions & 2 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Section: utils
Priority: optional
Maintainer: Kiwix team <[email protected]>
Build-Depends: debhelper-compat (= 13),
libkiwix-dev (>= 10.0.0~),
libzim-dev (>= 7.2.0~),
libzim-dev (>= 9.0.0), libzim-dev (<< 10.0.0),
libkiwix-dev (>= 13.0.0), libkiwix-dev (<< 14.0.0),
meson,
pkg-config,
Standards-Version: 4.5.0
Expand Down
6 changes: 3 additions & 3 deletions meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp',
version : '3.6.0',
version : '3.7.0',
license : 'GPL',
default_options: ['c_std=c11', 'cpp_std=c++17', 'werror=true'])

Expand All @@ -16,10 +16,10 @@ if static_linkage
endif

thread_dep = dependency('threads')
kiwixlib_dep = dependency('kiwix', version:'>=13.0.0', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'<14.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'>=9.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'<10.0.0', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'>=13.0.0', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'<14.0.0', static:static_linkage)

all_deps = [thread_dep, kiwixlib_dep, libzim_dep]

Expand Down

0 comments on commit fcbb4a5

Please sign in to comment.