Skip to content

Commit

Permalink
Version 6.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkk525 committed Sep 1, 2020
1 parent b3dcc7e commit a0998ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

---------------------------------------------------
### Version 6.1.2
* [BELL] 2 different modules, one for usage with interrupts, the other for polling using uasyncio. They are interchangeable. Support for detecting an AC signal when bell is ringing.
* [NTPTIME] Support for daylight savings (summer/winter time). Note: time may be wrong for a few hours on the day of the time change.
* [SENSORS] Support for publishing readings as retained
* [TOOLS] support 1M esp8266 module, remove deprecated files
* [CLIMATE] support using one target_temp with tolerance instead of temp_high and temp_low
* sys_vars: fix DEVICE_NAME being only used on unix port

---------------------------------------------------
### Version 6.1.1
* [UASYNCIO] Support the new uasyncio version
Expand All @@ -13,7 +22,7 @@
* [COMPONENTS] only list constructor kwargs that are used by the current subclass, everything else is covered by "**kwargs", fix random.random not always available anymore, add "expire_after" option to sensors, fix delete discovery option, add option to not publish a value if reading failed (by returnin False), fix discovery message for binary_sensors, remove icon from binary sensor discovery message (maybe falsely removed by homeassistant?)
* [CONFIG] Configuration of components now relies on kwargs. Providing args trough a config dictionary (e.g. remote configuration) is not supported anymore (but was never advised anyway).
* [MQTT] concurrent operations with timeouts now possible, fix for esp8266 with native not working anymore
* [BELL]: drop timer because it worked unreliable on esp8266, change component to inherit from ComponentSensor, add option to read pin state multiple times to ensure that it works with AC signals.
* [BELL] drop timer because it worked unreliable on esp8266, change component to inherit from ComponentSensor, add option to read pin state multiple times to ensure that it works with AC signals.
* Support for Pyboard D added
* Support for loboris fork dropped because it won't get any updates and probably doesn't support the new uasyncio

Expand Down
2 changes: 1 addition & 1 deletion pysmartnode/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
raise TypeError("DEVICE_NAME has to be set on unix port")

# General
VERSION = const(611)
VERSION = const(612)
print("PySmartNode version {!s} started".format(VERSION))

import gc
Expand Down

0 comments on commit a0998ad

Please sign in to comment.