From f9bca7cf09b3b6d00b74ae5df8878d8d0a4347e8 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Tue, 10 Dec 2024 17:02:35 +0100 Subject: [PATCH] Prepare 3.1.0 release Prepare a new release, so pmbotostrap can be used with Alpine 3.21 / postmarketOS v24.12. Also the big rewrite is done, so we can do more frequent releases again. Related: https://wiki.postmarketos.org/wiki/Pmbootstrap_release --- pmb/__init__.py | 2 +- pmb/config/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pmb/__init__.py b/pmb/__init__.py index e368352c..237adac8 100644 --- a/pmb/__init__.py +++ b/pmb/__init__.py @@ -25,7 +25,7 @@ from .core.context import get_context from .commands import run_command # pmbootstrap version -__version__ = "3.0.0" +__version__ = "3.1.0" # Python version check # === CHECKLIST FOR UPGRADING THE REQUIRED PYTHON VERSION === diff --git a/pmb/config/__init__.py b/pmb/config/__init__.py index f97f623a..92b9d18e 100644 --- a/pmb/config/__init__.py +++ b/pmb/config/__init__.py @@ -30,8 +30,8 @@ apk_keys_path: Path = pmb_src / "pmb/data/keys" # (which may contain a vulnerable apk/openssl, and allows an attacker to # exploit the system!) apk_tools_min_version = { - "edge": "2.14.4-r4", - "v3.21": "2.14.4-r4", + "edge": "2.14.6-r2", + "v3.21": "2.14.6-r2", "v3.20": "2.14.4-r1", "v3.19": "2.14.4-r0", "v3.18": "2.14.4-r0",