From 1876b5f5420f1b0246d03579f12300a5427cdaad Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Thu, 20 Jul 2023 15:58:54 +0200 Subject: [PATCH] New version of libzim and libkiwix - libzim 8.2.1 - libkiwix 12.1.0 --- appveyor.yml | 4 ++-- kiwixbuild/versions.py | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 7d7fa35..6e3324b 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.3.1-2' - KIWIX_DESKTOP_RELEASE: 0 + KIWIX_DESKTOP_VERSION: '2.3.1-3' + KIWIX_DESKTOP_RELEASE: 1 init: diff --git a/kiwixbuild/versions.py b/kiwixbuild/versions.py index aaa1591..37c9fc6 100644 --- a/kiwixbuild/versions.py +++ b/kiwixbuild/versions.py @@ -1,8 +1,8 @@ # This file reference all the versions of the depedencies we use in kiwix-build. main_project_versions = { - 'libzim': '8.2.0', - 'libkiwix': '12.0.0', + 'libzim': '8.2.1', + 'libkiwix': '12.1.0', 'kiwix-tools': '3.5.0', 'zim-tools': '3.2.0', 'kiwix-desktop': '2.3.1' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml @@ -29,11 +29,11 @@ main_project_versions = { # - set KIWIX_DESKTOP_RELEASE to 0 release_versions = { - 'libzim': 1, # Depends of base deps (was 0) - 'libkiwix': None, # Depends of libzim (was 2) - 'kiwix-tools': 1, # Depends of libkiwix and libzim (was 0) - 'zim-tools': 1, # Depends of libzim (was 0) - 'kiwix-desktop': None # Depends of libkiwix and libzim (was 2) + 'libzim': 0, # Depends of base deps (was 0) + 'libkiwix': 0, # Depends of libzim (was 2) + 'kiwix-tools': 2, # Depends of libkiwix and libzim (was 1) + 'zim-tools': 2, # Depends of libzim (was 1) + 'kiwix-desktop': 3 # Depends of libkiwix and libzim (was 2) }