From 55a0ae4337e2b7ffa0422d8972715309a4bf889a Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sat, 13 Dec 2025 15:43:19 +0100 Subject: [PATCH] Release version 1.5.0 --- CHANGELOG.md | 13 +++++++++++++ flake.nix | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f8a46e..2292167 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [1.5.0] - 2025-12-13 + +* - Commands now show live output while running, making long operations easier to follow +- Error messages include full command output, making failures easier to understand and debug +- Deinstallation is more complete and predictable, removing CLI links and properly cleaning up repositories +- Preview mode is more trustworthy, clearly showing what would happen without making changes +- Repository configuration problems are detected earlier with clear, user-friendly explanations +- More consistent behavior across different Linux distributions +- More reliable execution in Docker containers and CI environments +- Nix-based execution works more smoothly, especially when running as root or inside containers +- Existing commands, scripts, and workflows continue to work without any breaking changes + + ## [1.4.1] - 2025-12-12 * Fixed stable release container publishing diff --git a/flake.nix b/flake.nix index 032d818..2528794 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "1.4.1"; + version = "1.5.0"; # Use the git repo as source src = ./.; diff --git a/pyproject.toml b/pyproject.toml index ce3d19e..74fbbb9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "package-manager" -version = "1.4.1" +version = "1.5.0" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.9"