From bc8829ef0de38ba9e17cb68f0b69ca0ecdd7a65d Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 19 Jan 2022 15:39:17 +0100 Subject: [PATCH] Build new release of all our projects. - libzim 7.2.0 - libkiwix 10.0.0 - kiwix-tools 3.2.0 - zim-tools 3.1.0 - kiwix-desktop 2.1.0 --- appveyor.yml | 4 ++-- kiwixbuild/versions.py | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 1df3ff6..970ffe5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,8 +9,8 @@ environment: MSYS2_ARG_CONV_EXCL: '-Tp' MINGW64_RUN: 'C:\msys64\usr\bin\bash.exe --login -c' MSYSTEM: 'MINGW64' - KIWIX_DESKTOP_VERSION: '2.0.5' - KIWIX_DESKTOP_RELEASE: 0 + KIWIX_DESKTOP_VERSION: '2.1.0' + KIWIX_DESKTOP_RELEASE: 1 init: diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index 28187ad..cc73e7e 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -1,11 +1,11 @@ # This file reference all the versions of the depedencies we use in kiwix-build. main_project_versions = { - 'libzim': '7.1.0', - 'libkiwix': '9.4.1', - 'kiwix-tools': '3.1.2', - 'zim-tools': '3.0.0', - 'kiwix-desktop': '2.0.5' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml + 'libzim': '7.2.0', + 'libkiwix': '10.0.0', + 'kiwix-tools': '3.2.0', + 'zim-tools': '3.1.0', + 'kiwix-desktop': '2.1.0' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml } # This dictionnary specify what we need to build at each release process. @@ -30,10 +30,10 @@ main_project_versions = { release_versions = { 'libzim': 0, # Depends of base deps (was 0) - 'libkiwix': None, # Depends of libzim (was 0) - 'kiwix-tools': None, # Depends of libkiwix and libzim (was 5) - 'zim-tools': 1, # Depends of libzim (was 0) - 'kiwix-desktop': None # Depends of libkiwix and libzim (was 0) + 'libkiwix': 0, # Depends of libzim (was 0) + 'kiwix-tools': 0, # Depends of libkiwix and libzim (was 5) + 'zim-tools': 0, # Depends of libzim (was 0) + 'kiwix-desktop': 0 # Depends of libkiwix and libzim (was 0) }