From 4f458e5954ff4f61c83b3c5d6921476dcfc30831 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 4 Mar 2022 17:31:25 +0100 Subject: [PATCH] New version of kiwix-desktop 2.2.0 --- appveyor.yml | 2 +- kiwixbuild/versions.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index d94690c..3888a54 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,7 +9,7 @@ environment: MSYS2_ARG_CONV_EXCL: '-Tp' MINGW64_RUN: 'C:\msys64\usr\bin\bash.exe --login -c' MSYSTEM: 'MINGW64' - KIWIX_DESKTOP_VERSION: '2.1.0-1' + KIWIX_DESKTOP_VERSION: '2.2.0' KIWIX_DESKTOP_RELEASE: 1 diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index 6e70885..e2b9db7 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -5,7 +5,7 @@ main_project_versions = { 'libkiwix': '10.0.1', '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 + 'kiwix-desktop': '2.2.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': None, # Depends of base deps (was 0) - 'libkiwix': 0, # Depends of libzim (was 0) - 'kiwix-tools': 1, # Depends of libkiwix and libzim (was 0) + 'libkiwix': None, # Depends of libzim (was 0) + 'kiwix-tools': None, # Depends of libkiwix and libzim (was 1) 'zim-tools': None, # Depends of libzim (was 0) - 'kiwix-desktop': 1 # Depends of libkiwix and libzim (was 0) + 'kiwix-desktop': 0 # Depends of libkiwix and libzim (was 0) }