From 0334f477fd7c29d5251b77d0fea96412b72766d5 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 11 Dec 2025 20:01:29 +0100 Subject: [PATCH] Release version 0.10.2 --- CHANGELOG.md | 9 +++++++++ flake.nix | 2 +- pyproject.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9dbb63..cc14665 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.10.2] - 2025-12-11 + +* * Debian package now depends on `sudo` for reliable privilege escalation. +* Nix initialization revamped for robustness: container/host detection, retrying installer download, automatic creation of `nixbld` users, correct `/nix` ownership, and consistent PATH setup. +* AUR builder setup now retries `yay` cloning to avoid network-related failures. +* Nix flake installer now uses real exit codes, fails only on mandatory outputs, and treats `default` as optional for `pkgmgr`. +* Updated unit tests to match new installer behavior. + + ## [0.10.1] - 2025-12-11 * Fixed Debian\Ubuntu to pass container e2e tests diff --git a/flake.nix b/flake.nix index 344fadd..1d0ce0d 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ rec { pkgmgr = pyPkgs.buildPythonApplication { pname = "package-manager"; - version = "0.10.1"; + version = "0.10.2"; # Use the git repo as source src = ./.; diff --git a/pyproject.toml b/pyproject.toml index b8212ee..eaeb71d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "package-manager" -version = "0.10.1" +version = "0.10.2" description = "Kevin's package-manager tool (pkgmgr)" readme = "README.md" requires-python = ">=3.11"