From b1572b89b618f5a6ff60b8b7569f5985488ea3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20R=C3=B6mhild?= Date: Thu, 9 May 2019 16:33:14 +0200 Subject: [PATCH] Bump version to 1.0.0-alpha3 --- CHANGELOG.rst | 7 +++++++ Makefile | 2 +- homie/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) 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"