From a30cd55f0d2256f462b66654f98b182275a6be2e Mon Sep 17 00:00:00 2001 From: Simone Weiss Date: Tue, 18 Feb 2025 16:46:42 +0100 Subject: [PATCH 1/2] EBcL release 1.5 --- ebcl/common/apt.py | 4 ++-- tests/test_proxy.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ebcl/common/apt.py b/ebcl/common/apt.py index 5641a6a..c1aba6f 100644 --- a/ebcl/common/apt.py +++ b/ebcl/common/apt.py @@ -409,12 +409,12 @@ def ebcl(cls, arch: CpuArch, dist: str, release: str, components: list[str]) -> ) @classmethod - def ebcl_apt(cls, arch: CpuArch, release: str = '1.4') -> Self: + def ebcl_apt(cls, arch: CpuArch, release: str = '1.5') -> Self: """Get the EBcL apt repo for EB components.""" return cls.ebcl(arch, "ebcl", release, ['prod', 'dev']) @classmethod - def ebcl_primary_repo(cls, arch: CpuArch, release: str = '1.4') -> Self: + def ebcl_primary_repo(cls, arch: CpuArch, release: str = '1.5') -> Self: """Get the EBcL apt repo for upstream jammy components.""" return cls.ebcl(arch, "jammy", release, ['main']) diff --git a/tests/test_proxy.py b/tests/test_proxy.py index ae94574..668efbb 100644 --- a/tests/test_proxy.py +++ b/tests/test_proxy.py @@ -116,7 +116,7 @@ def test_find_linux_image_generic(self) -> None: def test_find_bootstrap_package(self) -> None: """ Test that bootstrap-root-ubuntu-jammy package is found. """ - proxy = Proxy([Apt.ebcl_apt(CpuArch.AMD64, '1.4')]) + proxy = Proxy([Apt.ebcl_apt(CpuArch.AMD64, '1.5')]) vds = parse_depends('bootstrap-root-ubuntu-jammy', CpuArch.AMD64) assert vds @@ -125,7 +125,7 @@ def test_find_bootstrap_package(self) -> None: assert p.name == 'bootstrap-root-ubuntu-jammy' assert p.arch == CpuArch.AMD64 - proxy = Proxy([Apt.ebcl_apt(CpuArch.ARM64, '1.4')]) + proxy = Proxy([Apt.ebcl_apt(CpuArch.ARM64, '1.5')]) vds = parse_depends('bootstrap-root-ubuntu-jammy', CpuArch.ARM64) assert vds From 0c18e3e9a3b88630d2266dc0c8ab454873964cd3 Mon Sep 17 00:00:00 2001 From: Simone Weiss Date: Tue, 18 Feb 2025 16:48:42 +0100 Subject: [PATCH 2/2] Bump version --- ebcl/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebcl/__init__.py b/ebcl/__init__.py index ddcaa45..c45d9db 100644 --- a/ebcl/__init__.py +++ b/ebcl/__init__.py @@ -1 +1 @@ -__version__ = "1.3.11" +__version__ = "1.3.12"