Skip to content

Commit 18c3e1a

Browse files
committed
Bump version to 2024.12.0
1 parent de246ce commit 18c3e1a

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,11 @@ bump_major:
1010
bump_beta:
1111
bumpver update --no-fetch --patch --tag=beta --tag-num
1212

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

16-
bump_remove_beta_tag:
16+
bump_dev:
17+
bumpver update --no-fetch --patch --tag=dev --tag-num
18+
19+
bump_remove_pre_tag:
1720
bumpver update --no-fetch --tag=final --commit --commit-message="Final release from {old_version} to {new_version}"

custom_components/miele/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from enum import IntEnum
44

55
DOMAIN = "miele"
6-
VERSION = "2024.11.1"
6+
VERSION = "2024.12.0"
77
API_READ_TIMEOUT = 20
88
MANUFACTURER = "Miele"
99

custom_components/miele/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"pymiele==0.2.0"
2323
],
2424
"ssdp": [],
25-
"version": "2024.11.1",
25+
"version": "2024.12.0",
2626
"zeroconf": [
2727
"_mieleathome._tcp.local."
2828
]

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpver]
2-
current_version = 2024.11.1
2+
current_version = 2024.12.0
33
version_pattern = YYYY.MM.PATCH[PYTAGNUM]
44
commit_message = "Bump version from {old_version} to {new_version}"
55
commit = False

0 commit comments

Comments
 (0)