From 59039d0b8487e64e0c599da27d7b40076e4535c3 Mon Sep 17 00:00:00 2001 From: Peter Hodge Date: Sun, 3 May 2026 08:24:53 +1000 Subject: [PATCH 1/3] bin/ci/check_versions.sh: use simpler redirect It's as though CI environment is silently using 'sh' instead of 'bash' and causing &> redirect to send 'grep' into background --- bin/ci/check_versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ci/check_versions.sh b/bin/ci/check_versions.sh index 979c8b6..af3b513 100755 --- a/bin/ci/check_versions.sh +++ b/bin/ci/check_versions.sh @@ -12,7 +12,7 @@ expected_version="$1" shift if [ -n "$expected_version" ]; then - if ! grep "^version = \"$expected_version\"" homely/__init__.py &>/dev/null; then + if ! grep "^version = \"$expected_version\"" homely/__init__.py >/dev/null; then echo "ERROR: expected 'version = \"$expected_version\"' in homely/__init__.py" >&2 exit 3 fi From faadeb2ef5bc1b0f12bf22b73a079ccabba2d077 Mon Sep 17 00:00:00 2001 From: Peter Hodge Date: Sun, 3 May 2026 08:45:37 +1000 Subject: [PATCH 2/3] CHANGELOG.rst: 0.23.1 also not released; push stuff to 0.23.2 --- CHANGELOG.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6546f83..bad14df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,7 +3,7 @@ =========== -Version 0.23.1 - 3 May 2026 +Version 0.23.2 - 3 May 2026 --------------------------- * New `HOMELY_PULL_WHEN_DIRTY` override to control whether `homely update` will pull when the git repo is dirty. @@ -11,6 +11,12 @@ Version 0.23.1 - 3 May 2026 constructed as well. +Version 0.23.1 - Not Released +----------------------------- + +* Not published to due publish pipeline issues. + + Version 0.23.0 - Not Released ----------------------------- From e3e1be6017d73e2adb3946b36f0986c087522c8b Mon Sep 17 00:00:00 2001 From: Peter Hodge Date: Sun, 3 May 2026 08:46:24 +1000 Subject: [PATCH 3/3] Bump version to 0.23.2 --- homely/__init__.py | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homely/__init__.py b/homely/__init__.py index 6cea0ce..d9558b5 100644 --- a/homely/__init__.py +++ b/homely/__init__.py @@ -1 +1 @@ -version = "0.23.1" +version = "0.23.2" diff --git a/pyproject.toml b/pyproject.toml index 0e3d6de..8e5a19d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers=[ requires-python = ">=3.10" # this also needs to be updated in homely/__init__.py # and uv.lock by running "uv lock" -version = "0.23.1" +version = "0.23.2" dependencies = [ "python-daemon>=2.3.0", diff --git a/uv.lock b/uv.lock index ff47c24..a1a6e7c 100644 --- a/uv.lock +++ b/uv.lock @@ -311,7 +311,7 @@ wheels = [ [[package]] name = "homely" -version = "0.23.1" +version = "0.23.2" source = { editable = "." } dependencies = [ { name = "click" },