From 0b52bb01bd5f7c6da6c70a7c8e48b715d670c44d Mon Sep 17 00:00:00 2001 From: Daniel Perna Date: Tue, 17 Oct 2023 09:48:23 +0200 Subject: [PATCH] Bump version --- changelog.txt | 6 ++++++ pydevccu/const.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/changelog.txt b/changelog.txt index 60767b1..79ef3f6 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,9 @@ +Version 0.1.7 (2023-10-17) +- Add HmIPW-SCTHD +- Add HmIP-eTRV-B-2 R4M +- Add HmIP-WKP +- Add HB-UNI-RGB-LED-CTRL + Version 0.1.6 (2023-04-26) - Add HmIP-RGBW diff --git a/pydevccu/const.py b/pydevccu/const.py index 25d5827..c12a726 100644 --- a/pydevccu/const.py +++ b/pydevccu/const.py @@ -2,7 +2,7 @@ Constants used in pydevccu """ -VERSION = '0.1.6' +VERSION = '0.1.7' IP_LOCALHOST_V4 = '127.0.0.1' IP_LOCALHOST_V6 = '::1' diff --git a/setup.py b/setup.py index 4686b82..a3791d1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ PACKAGE_NAME = 'pydevccu' HERE = os.path.abspath(os.path.dirname(__file__)) -VERSION = '0.1.6' +VERSION = '0.1.7' PACKAGES = find_packages(exclude=['tests', 'tests.*', 'dist', 'build'])