Merge pull request #299 from kiwix/update_version

Update to new version 4.0.5 of libzim.
This commit is contained in:
Matthieu Gautier 2019-02-21 16:54:35 +01:00 committed by GitHub
commit 884c9368fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

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