diff --git a/CHANGELOG.md b/CHANGELOG.md index ad4101f..d8b52d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.8.1] - 2025-12-16 + +* * Improved stability and consistency of all Git operations (clone, pull, push, release, branch handling) with clearer error messages and predictable preview behavior. +* Mirrors are now handled cleanly: only valid Git remotes are used for Git operations, while non-Git URLs (e.g. PyPI) are excluded, preventing broken or confusing repository configs. +* GitHub authentication is more robust: tokens are automatically resolved via the GitHub CLI (`gh`), invalid stored tokens are replaced, and interactive prompts occur only when necessary. +* Repository creation and release workflows are more reliable, producing cleaner Git configurations and more predictable version handling. + + ## [1.8.0] - 2025-12-15 * *** New Features: *** diff --git a/flake.nix b/flake.nix index a363c08..7910fc3 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "1.8.0"; + version = "1.8.1"; # Use the git repo as source src = ./.; diff --git a/packaging/arch/PKGBUILD b/packaging/arch/PKGBUILD index b80da7e..a13c450 100644 --- a/packaging/arch/PKGBUILD +++ b/packaging/arch/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Kevin Veen-Birkenbach pkgname=package-manager -pkgver=1.8.0 +pkgver=1.8.1 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 df08464..0e841f3 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,12 @@ +package-manager (1.8.1-1) unstable; urgency=medium + + * * Improved stability and consistency of all Git operations (clone, pull, push, release, branch handling) with clearer error messages and predictable preview behavior. +* Mirrors are now handled cleanly: only valid Git remotes are used for Git operations, while non-Git URLs (e.g. PyPI) are excluded, preventing broken or confusing repository configs. +* GitHub authentication is more robust: tokens are automatically resolved via the GitHub CLI (`gh`), invalid stored tokens are replaced, and interactive prompts occur only when necessary. +* Repository creation and release workflows are more reliable, producing cleaner Git configurations and more predictable version handling. + + -- Kevin Veen-Birkenbach Tue, 16 Dec 2025 18:06:35 +0100 + package-manager (1.8.0-1) unstable; urgency=medium * *** New Features: *** diff --git a/packaging/fedora/package-manager.spec b/packaging/fedora/package-manager.spec index 9dc20d0..8206020 100644 --- a/packaging/fedora/package-manager.spec +++ b/packaging/fedora/package-manager.spec @@ -1,5 +1,5 @@ Name: package-manager -Version: 1.8.0 +Version: 1.8.1 Release: 1%{?dist} Summary: Wrapper that runs Kevin's package-manager via Nix flake @@ -74,6 +74,12 @@ echo ">>> package-manager removed. Nix itself was not removed." /usr/lib/package-manager/ %changelog +* Tue Dec 16 2025 Kevin Veen-Birkenbach - 1.8.1-1 +- * Improved stability and consistency of all Git operations (clone, pull, push, release, branch handling) with clearer error messages and predictable preview behavior. +* Mirrors are now handled cleanly: only valid Git remotes are used for Git operations, while non-Git URLs (e.g. PyPI) are excluded, preventing broken or confusing repository configs. +* GitHub authentication is more robust: tokens are automatically resolved via the GitHub CLI (`gh`), invalid stored tokens are replaced, and interactive prompts occur only when necessary. +* Repository creation and release workflows are more reliable, producing cleaner Git configurations and more predictable version handling. + * 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. diff --git a/pyproject.toml b/pyproject.toml index db32c20..2c07268 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "kpmx" -version = "1.8.0" +version = "1.8.1" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.9"