From b42d9a78b0753a4abcf56efbc8db2337e77f276e Mon Sep 17 00:00:00 2001 From: chassio Date: Tue, 1 Jun 2021 19:02:58 -0600 Subject: [PATCH 1/2] Update __init__.py (#76) * Update __init__.py Added support for the Lutron 15-AMP Plug-in Appliance Module (RR-15APS-1-XX) * update changelog Co-authored-by: Matthew Donoughe --- CHANGELOG.md | 4 ++++ pylutron_caseta/__init__.py | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e87411f..638473a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- Support for 15-AMP Plug-in Appliance Module (RR-15APS-1-XX). + ## [0.10.0] - 2021-05-22 ### Added diff --git a/pylutron_caseta/__init__.py b/pylutron_caseta/__init__.py index 8a63e2d..2abfb0d 100644 --- a/pylutron_caseta/__init__.py +++ b/pylutron_caseta/__init__.py @@ -9,6 +9,7 @@ "switch": [ "WallSwitch", "OutdoorPlugInSwitch", + "PlugInSwitch", ], "fan": [ "CasetaFanSpeedController", From 85ba51e5df2a9b38c77f786621abf4667bf72737 Mon Sep 17 00:00:00 2001 From: Matthew Donoughe Date: Tue, 1 Jun 2021 21:06:48 -0400 Subject: [PATCH 2/2] release 0.11.0 --- CHANGELOG.md | 5 ++++- setup.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 638473a..bb74bd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2021-06-01 + ### Added - Support for 15-AMP Plug-in Appliance Module (RR-15APS-1-XX). @@ -177,7 +179,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Ability to interact with Caséta bridge using LIP over Telnet and LEAP over SSH. -[unreleased]: https://github.com/gurumitts/pylutron-caseta/compare/v0.10.0...HEAD +[unreleased]: https://github.com/gurumitts/pylutron-caseta/compare/v0.11.0...HEAD +[0.11.0]: https://github.com/gurumitts/pylutron-caseta/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/gurumitts/pylutron-caseta/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/gurumitts/pylutron-caseta/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/gurumitts/pylutron-caseta/compare/v0.7.2...v0.8.0 diff --git a/setup.py b/setup.py index 68228f4..c778f43 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="pylutron_caseta", - version="0.10.0", + version="0.11.0", license="Apache", description="""Provides an API to the Lutron Smartbridge""", author="gurumitts",