diff --git a/changelog.txt b/changelog.txt index 4b9a696fa..48164961a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +Version 0.1.70 (2020-10-03) +- Remove toplevel tests (Issue #334) @onkelbeh + Version 0.1.69 (2020-10-01) - Support for HmIP-PCBS2 + HmIP-FSI16 @leinich - Support for HB-LC-Sw2PBU-FM @oechslein diff --git a/setup.py b/setup.py index 3e0fabee6..41dacf2df 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,9 @@ def readme(): PACKAGE_NAME = 'pyhomematic' HERE = os.path.abspath(os.path.dirname(__file__)) -VERSION = '0.1.69' +VERSION = '0.1.70' -PACKAGES = find_packages(exclude=['dist', 'build']) +PACKAGES = find_packages(exclude=['dist', 'build', 'tests']) REQUIRES = []