Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
- Re-add matplotlib after temporarily removal due to compatibility issue with HA 2024.2.1+2024.2.2. Issued should be fixed in HA 2024.2.3.
- Improved error handling
- Bugfix in API call (headers)
  • Loading branch information
tmjo committed Feb 23, 2024
1 parent 4dd3143 commit 10d82c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__VERSION__ = "0.1.5"
__VERSION__ = "0.1.6"

bump:
bump2version --allow-dirty --current-version $(__VERSION__) patch Makefile custom_components/norwegianweather/const.py custom_components/norwegianweather/manifest.json custom_components/norwegianweather/api.py
Expand Down
2 changes: 1 addition & 1 deletion custom_components/norwegianweather/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

API_NAME = "norwegianweather"
API_ATTRIBUTION = "Data from MET Norway (www.met.no)"
VERSION = "0.1.5"
VERSION = "0.1.6"
API_USER_AGENT = f"{API_NAME}/{VERSION} github.com/tmjo/ha-norwegianweather"
API_STRINGTIME = "%Y-%m-%dT%H:%M:%S%z"
API_LANG = "nb"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/norwegianweather/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
NAME = "Norwegian Weather"
DOMAIN = "norwegianweather"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "0.1.5"
VERSION = "0.1.6"
ATTRIBUTION = "Data from MET Norway (www.met.no)"
MANUFACTURER = f"{NAME}"
ISSUE_URL = "https://github.com/tmjo/ha-norwegianweather/issues"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/norwegianweather/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "norwegianweather",
"name": "Norwegian Weather",
"version": "0.1.5",
"version": "0.1.6",
"documentation": "https://github.com/tmjo/ha-norwegianweather",
"issue_tracker": "https://github.com/tmjo/ha-norwegianweather/issues",
"dependencies": [],
Expand Down

0 comments on commit 10d82c4

Please sign in to comment.