Skip to content

Commit 756d5b4

Browse files
authored
Merge pull request #585 from kiwix/version_3.4.0
2 parents 252e3bc + 0f81dad commit 756d5b4

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

Changelog

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
kiwix-tools 3.4.0
2+
=================
3+
4+
* Remove last reference to kiwix-read tool (@legoktm #569)
5+
6+
kiwix-serve
7+
-----------
8+
9+
* Fix broken indentation in usage (@kelson42 #560)
10+
* Exit if wrong arguments are passed (@kelson42 #567)
11+
* Do not allow multiple values for same option (@juuz0 #564)
12+
* Fix default location of "rootLocation" (@rgaudin #571)
13+
* [DOCKER] Change default port to 8080 (@neyder #581)
14+
* [DOCKER] Simplify dockerfile (@rgaudin #582)
15+
16+
kiwix-manage
17+
------------
18+
19+
* Fix man page (@kelson42 #576)
20+
121
kiwix-tools 3.3.0
222
=================
323

@@ -6,7 +26,7 @@ kiwix-tools 3.3.0
626
kiwix-serve
727
-----------
828

9-
* Add an option to limit the number of connections for a same IP (@nikhil #534)
29+
* Add an option to limit the number of connections for a same IP (@juuz0 #534)
1030
* Add an option to limit the number of zim in a multizim fulltext search (@mgautierfr #558)
1131

1232
kiwix-search
@@ -34,7 +54,7 @@ kiwix-tools 3.2.0
3454
kiwix-serve
3555
-----------
3656

37-
* Print the url on which a user can connect to on startup (@nikhil #499 #522)
57+
* Print the url on which a user can connect to on startup (@juuz0 #499 #522)
3858
* Reload library on SIGHUP signal (@veloman-yunkan #497)
3959
* Add a option `--monitorLibrary` to monitor and automically reload the library
4060
(@veloman-yunkan #503)

meson.build

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('kiwix-tools', 'cpp',
2-
version : '3.3.0',
2+
version : '3.4.0',
33
license : 'GPL',
44
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
55

@@ -13,8 +13,8 @@ if static_linkage
1313
endif
1414

1515
thread_dep = dependency('threads')
16-
kiwixlib_dep = dependency('kiwix', version:'>=11.0.0', static:static_linkage)
17-
libzim_dep = dependency('libzim', version:'>=7.2.0', static:static_linkage)
16+
kiwixlib_dep = dependency('kiwix', version:'>=12.0.0', static:static_linkage)
17+
libzim_dep = dependency('libzim', version:'>=8.1.0', static:static_linkage)
1818

1919
all_deps = [thread_dep, kiwixlib_dep, libzim_dep]
2020

0 commit comments

Comments
 (0)