diff --git a/CHANGELOG.md b/CHANGELOG.md index e87411f..bb74bd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ 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). + ## [0.10.0] - 2021-05-22 ### Added @@ -173,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/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", 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",