Skip to content

Commit

Permalink
Fix - Fixing response status code logging. Prepared release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidusb-geek committed Jan 30, 2023
1 parent b2f1ee9 commit b387bd3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [0.3.33] - 2023-01-30
## [0.3.34] - 2023-01-30
### Fix
- Fixed bugs with paths again, now using the official pathlib everywhere.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'David HERNANDEZ'

# The full version, including alpha/beta/rc tags
release = '0.3.33'
release = '0.3.34'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name='emhass', # Required
version='0.3.33', # Required
version='0.3.34', # Required
description='An Energy Management System for Home Assistant', # Optional
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
Expand Down
2 changes: 1 addition & 1 deletion src/emhass/retrieve_hass.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,5 +299,5 @@ class response: pass
if response.status_code == 200:
self.logger.info("Successfully posted to "+entity_id+" = "+str(state))
else:
self.logger.info("The received response code is not recognized")
self.logger.info("The status code for received curl command response is: "+str(response.status_code))
return response, data

0 comments on commit b387bd3

Please sign in to comment.