Update to new version 4.0.5 of libzim.

This commit is contained in:
Matthieu Gautier 2019-02-21 15:51:55 +01:00
parent 63844cc13c
commit 0940a17596
1 changed files with 10 additions and 10 deletions

View File

@ -3,7 +3,7 @@
main_project_versions = { main_project_versions = {
'kiwix-lib': '4.0.0', 'kiwix-lib': '4.0.0',
'kiwix-tools': '0.9.0', 'kiwix-tools': '0.9.0',
'libzim': '4.0.4', 'libzim': '4.0.5',
'zim-tools': '1.0.0', 'zim-tools': '1.0.0',
'zimwriterfs': '1.2', 'zimwriterfs': '1.2',
'kiwix-desktop': '2.0-beta3' 'kiwix-desktop': '2.0-beta3'
@ -19,17 +19,17 @@ main_project_versions = {
# To change this dictionnary, use the following algorithm: # To change this dictionnary, use the following algorithm:
# - If project version change, set release_versions[project] = 0 # - If project version change, set release_versions[project] = 0
# - Else # - Else
# - If project depedencies have not change, remove project from release_versions # - If project depedencies have not change, set it to None and update the
# - Else, increment the value. If no value was present, see in # `(was ...)`.
# http://download.kiwikorg/releases what to set. # - Else, increment the value. If no value was present, see `(was ...)`.
release_versions = { release_versions = {
'libzim': None, # Depends of base deps (was 0) 'libzim': 0, # Depends of base deps (was 0)
'kiwix-lib': 0, # Depends of libzim (was 0) 'kiwix-lib': 1, # Depends of libzim (was 0)
'kiwix-tools': 0, # Depends of kiwix-lib and libzim (was 0) 'kiwix-tools': 1, # Depends of kiwix-lib and libzim (was 0)
'zim-tools': None, # Depends of libzim (was 2) 'zim-tools': 3, # Depends of libzim (was 2)
'zimwriterfs': None, # Depends of libzim (was 1) 'zimwriterfs': 2, # Depends of libzim (was 1)
'kiwix-desktop': 0 # Depends of kiwix-lib and libzim 'kiwix-desktop': 1 # Depends of kiwix-lib and libzim
} }