Skip to content

Commit

Permalink
Bump version to 2024.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
astrandb committed Dec 14, 2024
1 parent de246ce commit 18c3e1a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ bump_major:
bump_beta:
bumpver update --no-fetch --patch --tag=beta --tag-num

bump_beta_next:
bumpver update --no-fetch --tag-num --commit
bump_pre_next:
bumpver update --no-fetch --tag-num --commit --commit-message="Bump prerelease number -> {new_version}"

bump_remove_beta_tag:
bump_dev:
bumpver update --no-fetch --patch --tag=dev --tag-num

bump_remove_pre_tag:
bumpver update --no-fetch --tag=final --commit --commit-message="Final release from {old_version} to {new_version}"
2 changes: 1 addition & 1 deletion custom_components/miele/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from enum import IntEnum

DOMAIN = "miele"
VERSION = "2024.11.1"
VERSION = "2024.12.0"
API_READ_TIMEOUT = 20
MANUFACTURER = "Miele"

Expand Down
2 changes: 1 addition & 1 deletion custom_components/miele/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"pymiele==0.2.0"
],
"ssdp": [],
"version": "2024.11.1",
"version": "2024.12.0",
"zeroconf": [
"_mieleathome._tcp.local."
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpver]
current_version = 2024.11.1
current_version = 2024.12.0
version_pattern = YYYY.MM.PATCH[PYTAGNUM]
commit_message = "Bump version from {old_version} to {new_version}"
commit = False
Expand Down

0 comments on commit 18c3e1a

Please sign in to comment.