diff --git a/CHANGELOG.md b/CHANGELOG.md index 5419b24..425367c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [1.15.2] - 2026-05-28 + +* Restore `infinito` as an alias for the infinito-nexus/core repository so `pkgmgr install infinito` (and friends) resolves again. + ## [1.15.1] - 2026-05-28 * Insert pkgmgr release changelog entry under the H1 instead of above it. Fixes the markdownlint MD041 (first-line-h1) and MD012 (no-multiple-blanks) regressions that previously trashed every CHANGELOG.md after a release. diff --git a/flake.nix b/flake.nix index df3144c..fd2e322 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "1.15.1"; + version = "1.15.2"; # Use the git repo as source src = ./.; diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index 56dbe80..3b91d75 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Kevin Veen-Birkenbach pkgname=package-manager -pkgver=1.15.1 +pkgver=1.15.2 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 0d0120b..2dfb9bf 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +package-manager (1.15.2-1) unstable; urgency=medium + + * Restore `infinito` as an alias for the infinito-nexus/core repository so `pkgmgr install infinito` (and friends) resolves again. + + -- Kevin Veen-Birkenbach Thu, 28 May 2026 11:06:43 +0200 + package-manager (1.15.1-1) unstable; urgency=medium * Insert pkgmgr release changelog entry under the H1 instead of above it. Fixes the markdownlint MD041 (first-line-h1) and MD012 (no-multiple-blanks) regressions that previously trashed every CHANGELOG.md after a release. diff --git a/packaging/fedora/package-manager.spec b/packaging/fedora/package-manager.spec index b2296fd..fa5d9f7 100644 --- a/packaging/fedora/package-manager.spec +++ b/packaging/fedora/package-manager.spec @@ -1,5 +1,5 @@ Name: package-manager -Version: 1.15.1 +Version: 1.15.2 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 +* Thu May 28 2026 Kevin Veen-Birkenbach - 1.15.2-1 +- Restore `infinito` as an alias for the infinito-nexus/core repository so `pkgmgr install infinito` (and friends) resolves again. + * Thu May 28 2026 Kevin Veen-Birkenbach - 1.15.1-1 - Insert pkgmgr release changelog entry under the H1 instead of above it. Fixes the markdownlint MD041 (first-line-h1) and MD012 (no-multiple-blanks) regressions that previously trashed every CHANGELOG.md after a release. diff --git a/pyproject.toml b/pyproject.toml index c8b9f5a..2ce37b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "kpmx" -version = "1.15.1" +version = "1.15.2" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.9"