Release version 1.6.1

This commit is contained in:
Kevin Veen-Birkenbach
2025-12-14 12:01:52 +01:00
parent 37f3057d31
commit c987b35926
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
## [1.6.1] - 2025-12-14
* * Added automatic retry handling for GitHub 403 / rate-limit errors during Nix flake installs (Fibonacci backoff with jitter).
## [1.6.0] - 2025-12-14
* *** Changed ***

View File

@@ -32,7 +32,7 @@
rec {
pkgmgr = pyPkgs.buildPythonApplication {
pname = "package-manager";
version = "1.6.0";
version = "1.6.1";
# Use the git repo as source
src = ./.;

View File

@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "package-manager"
version = "1.6.0"
version = "1.6.1"
description = "Kevin's package-manager tool (pkgmgr)"
readme = "README.md"
requires-python = ">=3.9"