Skip to content

Commit

Permalink
release: prepare 0.9.2 (#63)
Browse files Browse the repository at this point in the history
* fix release script

* release: prepare release 0.9.2
  • Loading branch information
zlangbert authored Jan 12, 2025
1 parent 6ba20e1 commit 3de2028
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/daikinone/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"documentation": "https://github.com/zlangbert/ha-daikinone",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/zlangbert/ha-daikinone/issues",
"version": "0.9.1"
"version": "0.9.2"
}
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ release version:
# Ensuring we are on main branch
@git rev-parse --verify main > /dev/null 2>&1 || (echo "Not on main branch" && exit 1)

# Ensuring working directory is clean
@git status --porcelain | grep -q . && (echo "Working directory is not clean (has changes or untracked files)" && exit 1)
# Ensuring working directory is clean (including untracked files)
@test -z "$(git status --porcelain)" || (echo "Working directory is not clean (has changes or untracked files)" && exit 1)

# Creating and checking out release preparation branch
@git checkout -b release-prep-{{version}}
Expand Down

0 comments on commit 3de2028

Please sign in to comment.