Skip to content

Commit

Permalink
release: prepare 0.9.3 (#64)
Browse files Browse the repository at this point in the history
* fix release script race condition

* release: prepare release 0.9.3
  • Loading branch information
zlangbert authored Jan 12, 2025
1 parent 3de2028 commit 8e79d47
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 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.2"
"version": "0.9.3"
}
11 changes: 10 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,16 @@ release version:
@gh pr create --title "release: prepare {{version}}" --body "Prepare release {{version}}" --base main

# Merging PR
@gh pr merge --auto --delete-branch
@gh pr merge --auto --squash --delete-branch

# Wait for GitHub to finish processing
@sleep 10

# Creating release
@gh release create v{{version}} --generate-notes

# Switching back to main branch
@git checkout main

# Deleting the local release prep branch
@git branch -D release-prep-{{version}}

0 comments on commit 8e79d47

Please sign in to comment.