diff --git a/CHANGELOG.rst b/CHANGELOG.rst index da222e5..85a2558 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Changelog ========= +1.0.0-alpha3 +------------ + +* Fix restore from array property +* Add One-Wire example node for ds18b20 (Thanks Rick @palmtreefrb) + + 1.0.0-alpha2 ------------ diff --git a/Makefile b/Makefile index a14a05b..76d2e27 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ export PATH := $(PWD)/esp-open-sdk/xtensa-lx106-elf/bin:$(PWD)/micropython/tools:$(PWD)/micropython/ports/unix:$(HOME)/go/bin:$(PATH) -VERSION := 1.0.0-alpha2 +VERSION := 1.0.0-alpha3 MICROPYVERSION := 1.10 PORT ?= /dev/ttyUSB0 diff --git a/homie/__init__.py b/homie/__init__.py index 6e138b2..44693e7 100644 --- a/homie/__init__.py +++ b/homie/__init__.py @@ -1 +1 @@ -__version__ = b"1.0.0-alpha2" +__version__ = b"1.0.0-alpha3"