Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,20 @@
===========


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.
* `homely add` will now clone git repos with `--recurse-submodules` so that submodule trees are
constructed as well.


Version 0.23.1 - Not Released
-----------------------------

* Not published to due publish pipeline issues.


Version 0.23.0 - Not Released
-----------------------------

Expand Down
2 changes: 1 addition & 1 deletion bin/ci/check_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion homely/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.23.1"
version = "0.23.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading