From 60e3e755e1940de229baab6cc1b6c615446d7cf0 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 17 Apr 2020 17:39:41 +0200 Subject: [PATCH] New build of libzim, kiwix-lib and zim-tools. Do not build kiwix-desktop yet as we will do a new release just after. --- appveyor.yml | 2 +- kiwixbuild/versions.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index a4ffc38..93efb6a 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' - KIWIX_DESKTOP_RELEASE: 1 + KIWIX_DESKTOP_RELEASE: 0 init: diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index ecfebae..fd5b13b 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -1,10 +1,10 @@ # This file reference all the versions of the depedencies we use in kiwix-build. main_project_versions = { - 'kiwix-lib': '9.1.0', + 'kiwix-lib': '9.1.1', 'kiwix-tools': '3.1.0', # Also need to change this in appveyor/install_kiwix-tools.cmd - 'libzim': '6.1.0', - 'zim-tools': '1.1.0', + 'libzim': '6.1.1', + 'zim-tools': '1.1.1', 'zimwriterfs': '1.3.9', 'kiwix-desktop': '2.0' # 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': None, # Depends of libzim (was 0) - 'kiwix-tools': None, # Depends of kiwix-lib and libzim (was 0) - 'zim-tools': None, # Depends of libzim (was 0) - 'zimwriterfs': None, # Depends of libzim (was 0) - 'kiwix-desktop': 0 # Depends of kiwix-lib and libzim (was 0) + 'libzim': 0, # Depends of base deps (was 0) + 'kiwix-lib': 0, # Depends of libzim (was 0) + 'kiwix-tools': 1, # Depends of kiwix-lib and libzim (was 0) + 'zim-tools': 0, # Depends of libzim (was 0) + 'zimwriterfs': 1, # Depends of libzim (was 0) + 'kiwix-desktop': None # Depends of kiwix-lib and libzim (was 0) }