Skip to content

Commit f561cae

Browse files
committed
build: Bump version to 1.0.0-alpha.2
1 parent 8134d1d commit f561cae

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.0-alpha.2] - 2025-02-14
9+
10+
### Changed
11+
- Changed sensor unit to display proper temperature unit per day (°C·d or °F·d)
12+
- Fixed HACS validation issues
13+
814
## [1.0.0-alpha.1] - 2025-02-14
915

1016
### Added

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
__VERSION__ = "1.0.0-alpha.1"
1+
__VERSION__ = "1.0.0-alpha.2"
22

33
bump:
4-
bump2version --allow-dirty --current-version $(__VERSION__) patch Makefile custom_components/heating_degree_days/const.py custom_components/heating_degree_days/manifest.json
4+
bump2version --allow-dirty --current-version $(__VERSION__) patch Makefile custom_components/heating_degree_days/manifest.json
55

66
lint:
77
ruff check custom_components --fix

custom_components/heating_degree_days/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
"recorder"
1010
],
1111
"documentation": "https://github.com/alepee/hass-heating_degree_days",
12+
"integration_type": "helper",
1213
"iot_class": "calculated",
1314
"issue_tracker": "https://github.com/alepee/hass-heating_degree_days/issues",
1415
"requirements": [],
15-
"version": "1.0.0-alpha.1"
16+
"version": "1.0.0-alpha.2"
1617
}

links.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ln -s custom_components/heating_degree_days/translations .
22
ln -s custom_components/heating_degree_days/__init__.py .
3+
ln -s custom_components/heating_degree_days/calculations.py .
34
ln -s custom_components/heating_degree_days/config_flow.py .
45
ln -s custom_components/heating_degree_days/const.py .
56
ln -s custom_components/heating_degree_days/coordinator.py .

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0-alpha.1
2+
current_version = 1.0.0-alpha.2
33

44
[flake8]
55
exclude = .venv,.git,.tox,docs,venv,bin,lib,deps,build

0 commit comments

Comments
 (0)