File tree 3 files changed +12
-5
lines changed
3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
8
kiwix-tools 3.6.0
2
9
=================
3
10
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ Section: utils
3
3
Priority: optional
4
4
Maintainer: Kiwix team <kiwix@kiwix.org>
5
5
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 ),
8
8
meson,
9
9
pkg-config,
10
10
Standards-Version: 4.5.0
Original file line number Diff line number Diff line change 1
1
project (' kiwix-tools' , ' cpp' ,
2
- version : ' 3.6 .0' ,
2
+ version : ' 3.7 .0' ,
3
3
license : ' GPL' ,
4
4
default_options : [' c_std=c11' , ' cpp_std=c++17' , ' werror=true' ])
5
5
@@ -16,10 +16,10 @@ if static_linkage
16
16
endif
17
17
18
18
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)
21
19
libzim_dep = dependency (' libzim' , version :' >=9.0.0' , static :static_linkage)
22
20
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)
23
23
24
24
all_deps = [thread_dep, kiwixlib_dep, libzim_dep]
25
25
You can’t perform that action at this time.
0 commit comments