Skip to content

Commit fcbb4a5

Browse files
authored
Merge pull request #668 from kiwix/prepare-release-3.7.0
Prepare release 3.7.0
2 parents 331743e + e37af51 commit fcbb4a5

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

Changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
kiwix-tools 3.7.0
2+
=================
3+
4+
* Fixed ZIM name vs Book name confusion in documentation (@veloman-yunkan #663)
5+
* Fixes compilation dependencies to rely on appropriate version (@kelson42 #667)
6+
* New --skipInvalid Kiwix Server command line option (@schuellerf @kelson42 #666)
7+
18
kiwix-tools 3.6.0
29
=================
310

debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Section: utils
33
Priority: optional
44
Maintainer: Kiwix team <kiwix@kiwix.org>
55
Build-Depends: debhelper-compat (= 13),
6-
libkiwix-dev (>= 10.0.0~),
7-
libzim-dev (>= 7.2.0~),
6+
libzim-dev (>= 9.0.0), libzim-dev (<< 10.0.0),
7+
libkiwix-dev (>= 13.0.0), libkiwix-dev (<< 14.0.0),
88
meson,
99
pkg-config,
1010
Standards-Version: 4.5.0

meson.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('kiwix-tools', 'cpp',
2-
version : '3.6.0',
2+
version : '3.7.0',
33
license : 'GPL',
44
default_options: ['c_std=c11', 'cpp_std=c++17', 'werror=true'])
55

@@ -16,10 +16,10 @@ if static_linkage
1616
endif
1717

1818
thread_dep = dependency('threads')
19-
kiwixlib_dep = dependency('kiwix', version:'>=13.0.0', static:static_linkage)
20-
kiwixlib_dep = dependency('kiwix', version:'<14.0.0', static:static_linkage)
2119
libzim_dep = dependency('libzim', version:'>=9.0.0', static:static_linkage)
2220
libzim_dep = dependency('libzim', version:'<10.0.0', static:static_linkage)
21+
kiwixlib_dep = dependency('kiwix', version:'>=13.0.0', static:static_linkage)
22+
kiwixlib_dep = dependency('kiwix', version:'<14.0.0', static:static_linkage)
2323

2424
all_deps = [thread_dep, kiwixlib_dep, libzim_dep]
2525

0 commit comments

Comments
 (0)