From acf1b69b708b4244540c89208937de7a412075fc Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 8 Feb 2026 18:26:25 +0100 Subject: [PATCH] Release version 1.12.0 --- CHANGELOG.md | 5 +++++ flake.nix | 2 +- packaging/arch/PKGBUILD | 2 +- packaging/debian/changelog | 6 ++++++ packaging/fedora/package-manager.spec | 5 ++++- pyproject.toml | 2 +- 6 files changed, 18 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d64a068..db5006c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.12.0] - 2026-02-08 + +* Adds explicit concurrency groups to the CI and mark-stable workflows to prevent overlapping runs on the same branch and make pipeline execution more predictable. + + ## [1.11.2] - 2026-02-08 * Removes the v* tag trigger from the mark-stable workflow so it runs only on branch pushes and avoids duplicate executions during releases. diff --git a/flake.nix b/flake.nix index 531fce1..816d2d1 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "1.11.2"; + version = "1.12.0"; # Use the git repo as source src = ./.; diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 6d6bad0..f02723c 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Kevin Veen-Birkenbach pkgname=package-manager -pkgver=1.11.2 +pkgver=1.12.0 pkgrel=1 pkgdesc="Local-flake wrapper for Kevin's package-manager (Nix-based)." arch=('any') diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 8c30326..43ff7b5 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +package-manager (1.12.0-1) unstable; urgency=medium + + * Adds explicit concurrency groups to the CI and mark-stable workflows to prevent overlapping runs on the same branch and make pipeline execution more predictable. + + -- Kevin Veen-Birkenbach Sun, 08 Feb 2026 18:26:25 +0100 + package-manager (1.11.2-1) unstable; urgency=medium * Removes the v* tag trigger from the mark-stable workflow so it runs only on branch pushes and avoids duplicate executions during releases. diff --git a/packaging/fedora/package-manager.spec b/packaging/fedora/package-manager.spec index b8b80ac..98b7662 100644 --- a/packaging/fedora/package-manager.spec +++ b/packaging/fedora/package-manager.spec @@ -1,5 +1,5 @@ Name: package-manager -Version: 1.11.2 +Version: 1.12.0 Release: 1%{?dist} Summary: Wrapper that runs Kevin's package-manager via Nix flake @@ -74,6 +74,9 @@ echo ">>> package-manager removed. Nix itself was not removed." /usr/lib/package-manager/ %changelog +* Sun Feb 08 2026 Kevin Veen-Birkenbach - 1.12.0-1 +- Adds explicit concurrency groups to the CI and mark-stable workflows to prevent overlapping runs on the same branch and make pipeline execution more predictable. + * Sun Feb 08 2026 Kevin Veen-Birkenbach - 1.11.2-1 - Removes the v* tag trigger from the mark-stable workflow so it runs only on branch pushes and avoids duplicate executions during releases. diff --git a/pyproject.toml b/pyproject.toml index 990435c..bcaefcf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "kpmx" -version = "1.11.2" +version = "1.12.0" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.9"