From 46bcb177614f8247e067fa4c94c41f6ae1c80a95 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Mon, 11 May 2020 16:38:48 +0200 Subject: [PATCH] New version of libzim and zimwriterfs. Only rebuild zim-tools and not all other project as the libzim release is only about writer issues. --- appveyor.yml | 2 +- kiwixbuild/versions.py | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 13767a7..357d3ee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -10,7 +10,7 @@ environment: MINGW64_RUN: 'C:\msys64\usr\bin\bash.exe --login -c' MSYSTEM: 'MINGW64' KIWIX_DESKTOP_VERSION: '2.0.1-1' - KIWIX_DESKTOP_RELEASE: 1 + KIWIX_DESKTOP_RELEASE: 0 init: diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index e4dd904..d0678fb 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -3,9 +3,9 @@ main_project_versions = { 'kiwix-lib': '9.1.2', 'kiwix-tools': '3.1.0', # Also need to change this in appveyor/install_kiwix-tools.cmd - 'libzim': '6.1.1', + 'libzim': '6.1.2', 'zim-tools': '1.1.1', - 'zimwriterfs': '1.3.9', + 'zimwriterfs': '1.3.10', 'kiwix-desktop': '2.0.1' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml # You need to do the release process of kiwix-tools and kiwix-desktop in two separated process. } @@ -31,12 +31,12 @@ main_project_versions = { # - set KIWIX_DESKTOP_RELEASE to 0 release_versions = { - 'libzim': None, # Depends of base deps (was 0) - 'kiwix-lib': 0, # Depends of libzim (was 0) - 'kiwix-tools': 2, # Depends of kiwix-lib and libzim (was 1) - 'zim-tools': None, # Depends of libzim (was 0) - 'zimwriterfs': None, # Depends of libzim (was 1) - 'kiwix-desktop': 1 # Depends of kiwix-lib and libzim (was 0) + 'libzim': 0, # Depends of base deps (was 0) + 'kiwix-lib': None, # Depends of libzim (was 0) + 'kiwix-tools': None, # Depends of kiwix-lib and libzim (was 2) + 'zim-tools': 1, # Depends of libzim (was 0) + 'zimwriterfs': 0, # Depends of libzim (was 1) + 'kiwix-desktop': None # Depends of kiwix-lib and libzim (was 0) }