Skip to content

Commit 4b2d1d9

Browse files
alepeecursoragent
andcommitted
release: Bump to 1.0.3
- Add CHANGELOG entry for 1.0.3 (fix negative temperatures #76) - Bump version in manifest.json, setup.cfg, Makefile - Ignore local .github/RELEASE_NOTE_*.md Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 07674cc commit 4b2d1d9

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Private files
22
private/
33

4+
# Local release notes (kept for copy-paste to GitHub release)
5+
.github/RELEASE_NOTE_*.md
6+
47
# Home Assistant config
58
config/
69

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.3] - 2026-02-02
9+
10+
### Fixed
11+
- Fixed issue #76: Negative temperatures (e.g. below 0°C) are now correctly accepted in sensor validation; validation uses float conversion instead of isdigit() so winter temperatures no longer cause failed or skipped updates
12+
813
## [1.0.2] - 2025-11-05
914

1015
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__VERSION__ = "1.0.2"
1+
__VERSION__ = "1.0.3"
22

33
bump:
44
bump2version --allow-dirty --current-version $(__VERSION__) patch Makefile custom_components/heating_cooling_degree_days/manifest.json

custom_components/heating_cooling_degree_days/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
"iot_class": "calculated",
1313
"issue_tracker": "https://github.com/alepee/hass-heating_cooling_degree_days/issues",
1414
"requirements": [],
15-
"version": "1.0.2"
15+
"version": "1.0.3"
1616
}

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.2
2+
current_version = 1.0.3
33

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

0 commit comments

Comments
 (0)