From 08576fb023ff93f7358590872f48cd4f5c20380a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Wed, 9 Oct 2024 09:30:02 +0200 Subject: [PATCH 1/2] Add Leap 16.0 --- src/opensuse_distro_aliases/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/opensuse_distro_aliases/__init__.py b/src/opensuse_distro_aliases/__init__.py index b55a903..e7002fd 100644 --- a/src/opensuse_distro_aliases/__init__.py +++ b/src/opensuse_distro_aliases/__init__.py @@ -126,6 +126,13 @@ def get_distro_aliases(include_eol: bool = False) -> Dict[str, List[Distro]]: CACHED_ACTIVE_DISTRIBUTION_ALIASES: Dict[str, List[Distro]] = { "opensuse-leap-all": ( _leap_all := [ + Distro( + name="openSUSE Leap", + version="16.0", + namever="opensuse-leap-16.0", + obs_project_name=None, + active=True, + ), Distro( name="openSUSE Leap", version="15.6", From b7b518a1c708f24c61f8485af4a127e7cb376ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Wed, 9 Oct 2024 09:31:13 +0200 Subject: [PATCH 2/2] Bump version to 0.2.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0879774..b2a144d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "opensuse-distro-aliases" -version = "0.2.0" +version = "0.2.1" description = "Aliases for active openSUSE releases" authors = ["Dan Čermák "] license = "MIT"