From 9485bc9e3fc57fc1a9aa3949a045191fa9b455fb Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 15 Dec 2025 13:37:42 +0100 Subject: [PATCH] Release version 1.8.0 --- CHANGELOG.md | 11 +++++++++++ flake.nix | 2 +- packaging/arch/PKGBUILD | 2 +- packaging/debian/changelog | 12 ++++++++++++ packaging/fedora/package-manager.spec | 11 ++++++++++- pyproject.toml | 2 +- 6 files changed, 36 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3427a3e..ad4101f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [1.8.0] - 2025-12-15 + +* *** New Features: *** +- **Silent Updates**: You can now use the `--silent` flag during installs and updates to suppress error messages for individual repositories and get a single summary at the end. This ensures the process continues even if some repositories fail, while still preserving interactive checks when not in silent mode. +- **Repository Scaffolding**: The process for creating new repositories has been improved. You can now use templates to scaffold repositories with a preview and automatic mirror setup. + +*** Bug Fixes: *** +- **Pip Installation**: Pip is now installed automatically on all supported systems. This includes `python-pip` for Arch and `python3-pip` for CentOS, Debian, Fedora, and Ubuntu, ensuring that pip is available for Python package installations. +- **Pacman Keyring**: Fixed an issue on Arch Linux where package installation would fail due to missing keys. The pacman keyring is now properly initialized before installing packages. + + ## [1.7.2] - 2025-12-15 * * Git mirrors are now resolved consistently (origin → MIRRORS file → config → default). diff --git a/flake.nix b/flake.nix index f026f60..a363c08 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "1.7.2"; + version = "1.8.0"; # Use the git repo as source src = ./.; diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index b56c039..b80da7e 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Kevin Veen-Birkenbach pkgname=package-manager -pkgver=1.7.2 +pkgver=1.8.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 ebea147..df08464 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,15 @@ +package-manager (1.8.0-1) unstable; urgency=medium + + * *** New Features: *** +- **Silent Updates**: You can now use the `--silent` flag during installs and updates to suppress error messages for individual repositories and get a single summary at the end. This ensures the process continues even if some repositories fail, while still preserving interactive checks when not in silent mode. +- **Repository Scaffolding**: The process for creating new repositories has been improved. You can now use templates to scaffold repositories with a preview and automatic mirror setup. + +*** Bug Fixes: *** +- **Pip Installation**: Pip is now installed automatically on all supported systems. This includes `python-pip` for Arch and `python3-pip` for CentOS, Debian, Fedora, and Ubuntu, ensuring that pip is available for Python package installations. +- **Pacman Keyring**: Fixed an issue on Arch Linux where package installation would fail due to missing keys. The pacman keyring is now properly initialized before installing packages. + + -- Kevin Veen-Birkenbach Mon, 15 Dec 2025 13:37:42 +0100 + package-manager (1.7.2-1) unstable; urgency=medium * * Git mirrors are now resolved consistently (origin → MIRRORS file → config → default). diff --git a/packaging/fedora/package-manager.spec b/packaging/fedora/package-manager.spec index fd2ede7..9dc20d0 100644 --- a/packaging/fedora/package-manager.spec +++ b/packaging/fedora/package-manager.spec @@ -1,5 +1,5 @@ Name: package-manager -Version: 1.7.2 +Version: 1.8.0 Release: 1%{?dist} Summary: Wrapper that runs Kevin's package-manager via Nix flake @@ -74,6 +74,15 @@ echo ">>> package-manager removed. Nix itself was not removed." /usr/lib/package-manager/ %changelog +* Mon Dec 15 2025 Kevin Veen-Birkenbach - 1.8.0-1 +- *** New Features: *** +- **Silent Updates**: You can now use the `--silent` flag during installs and updates to suppress error messages for individual repositories and get a single summary at the end. This ensures the process continues even if some repositories fail, while still preserving interactive checks when not in silent mode. +- **Repository Scaffolding**: The process for creating new repositories has been improved. You can now use templates to scaffold repositories with a preview and automatic mirror setup. + +*** Bug Fixes: *** +- **Pip Installation**: Pip is now installed automatically on all supported systems. This includes `python-pip` for Arch and `python3-pip` for CentOS, Debian, Fedora, and Ubuntu, ensuring that pip is available for Python package installations. +- **Pacman Keyring**: Fixed an issue on Arch Linux where package installation would fail due to missing keys. The pacman keyring is now properly initialized before installing packages. + * Mon Dec 15 2025 Kevin Veen-Birkenbach - 1.7.2-1 - * Git mirrors are now resolved consistently (origin → MIRRORS file → config → default). * The `origin` remote is always enforced to use the primary URL for both fetch and push. diff --git a/pyproject.toml b/pyproject.toml index 90e4c70..db32c20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "kpmx" -version = "1.7.2" +version = "1.8.0" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.9"