diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2ad4b56..6546f83 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,7 +3,7 @@ =========== -Version 0.23.0 - 3 May 2026 +Version 0.23.1 - 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.0 - 3 May 2026 constructed as well. +Version 0.23.0 - Not Released +----------------------------- + +* Not published to due publish pipeline issues. + + Version 0.22.0 - 20 Feb 2026 ---------------------------- diff --git a/bin/ci/check_versions.sh b/bin/ci/check_versions.sh index 7a3c93a..979c8b6 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 diff --git a/homely/__init__.py b/homely/__init__.py index 1211cfc..6cea0ce 100644 --- a/homely/__init__.py +++ b/homely/__init__.py @@ -1 +1 @@ -version = "0.23.0" +version = "0.23.1" diff --git a/pyproject.toml b/pyproject.toml index 56233a3..0e3d6de 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.0" +version = "0.23.1" dependencies = [ "python-daemon>=2.3.0", diff --git a/uv.lock b/uv.lock index 92ee1ec..ff47c24 100644 --- a/uv.lock +++ b/uv.lock @@ -311,7 +311,7 @@ wheels = [ [[package]] name = "homely" -version = "0.23.0" +version = "0.23.1" source = { editable = "." } dependencies = [ { name = "click" },