Skip to content

Commit

Permalink
Merge pull request #585 from kiwix/version_3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Nov 30, 2022
2 parents 252e3bc + 0f81dad commit 756d5b4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
24 changes: 22 additions & 2 deletions Changelog
@@ -1,3 +1,23 @@
kiwix-tools 3.4.0
=================

* Remove last reference to kiwix-read tool (@legoktm #569)

kiwix-serve
-----------

* Fix broken indentation in usage (@kelson42 #560)
* Exit if wrong arguments are passed (@kelson42 #567)
* Do not allow multiple values for same option (@juuz0 #564)
* Fix default location of "rootLocation" (@rgaudin #571)
* [DOCKER] Change default port to 8080 (@neyder #581)
* [DOCKER] Simplify dockerfile (@rgaudin #582)

kiwix-manage
------------

* Fix man page (@kelson42 #576)

kiwix-tools 3.3.0
=================

Expand All @@ -6,7 +26,7 @@ kiwix-tools 3.3.0
kiwix-serve
-----------

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

kiwix-search
Expand Down Expand Up @@ -34,7 +54,7 @@ kiwix-tools 3.2.0
kiwix-serve
-----------

* Print the url on which a user can connect to on startup (@nikhil #499 #522)
* Print the url on which a user can connect to on startup (@juuz0 #499 #522)
* Reload library on SIGHUP signal (@veloman-yunkan #497)
* Add a option `--monitorLibrary` to monitor and automically reload the library
(@veloman-yunkan #503)
Expand Down
6 changes: 3 additions & 3 deletions meson.build
@@ -1,5 +1,5 @@
project('kiwix-tools', 'cpp',
version : '3.3.0',
version : '3.4.0',
license : 'GPL',
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])

Expand All @@ -13,8 +13,8 @@ if static_linkage
endif

thread_dep = dependency('threads')
kiwixlib_dep = dependency('kiwix', version:'>=11.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'>=7.2.0', static:static_linkage)
kiwixlib_dep = dependency('kiwix', version:'>=12.0.0', static:static_linkage)
libzim_dep = dependency('libzim', version:'>=8.1.0', static:static_linkage)

all_deps = [thread_dep, kiwixlib_dep, libzim_dep]

Expand Down

0 comments on commit 756d5b4

Please sign in to comment.