From ab2e4de8be0f0656ed9b7fdc25090c3279373088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20Hagelb=C3=A4ck?= Date: Tue, 26 Jan 2021 21:08:41 +0100 Subject: [PATCH] Update changelog and config.json to prepare for 0.5.0 release --- CHANGELOG.md | 18 +++++++++++++++--- plejd/config.json | 2 +- plejd/main.js | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c49bb4..7e3234b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,9 @@ **Implemented enhancements:** -- Adjust code to airbnb style guid, including eslint rules and prettier config. +- Adjust code to airbnb style guid, including eslint rules and prettier config - Updated dependencies +- Improved readme with info about installation, debugging, and logging **Fixed bugs:** @@ -21,6 +22,7 @@ - Cannot read property 'length' of undefined - when turning of the light [\#134](https://github.com/icanos/hassio-plejd/issues/134) - Idea: Add device id and shouldRetry to writeQueue [\#128](https://github.com/icanos/hassio-plejd/issues/128) +- Request: Clarify versions/readme [\#126](https://github.com/icanos/hassio-plejd/issues/126) - light.turn_off turns the lights on [\#124](https://github.com/icanos/hassio-plejd/issues/124) - Reverse transition: revisit [\#68](https://github.com/icanos/hassio-plejd/issues/68) @@ -40,18 +42,23 @@ - Bump bl from 1.2.2 to 1.2.3 in /plejd [\#112](https://github.com/icanos/hassio-plejd/pull/112) ([dependabot[bot]](https://github.com/apps/dependabot)) - Bump lodash from 4.17.15 to 4.17.19 in /plejd [\#93](https://github.com/icanos/hassio-plejd/pull/93) ([dependabot[bot]](https://github.com/apps/dependabot)) -## 0.4.6 (2020-11-24) +## 0.4.8 (2020-11-24) **Closed issues:** - Unable to install [\#111](https://github.com/icanos/hassio-plejd/issues/111) + +## 0.4.7 (2020-05-12) + +**Closed issues:** + - Reverse transition: revisit [\#68](https://github.com/icanos/hassio-plejd/issues/68) **Merged pull requests:** - transitions work [\#89](https://github.com/icanos/hassio-plejd/pull/89) ([icanos](https://github.com/icanos)) -## 0.4.5 (2020-05-06) +## 0.4.6 (2020-05-06) **Closed issues:** @@ -61,6 +68,11 @@ **Merged pull requests:** - fixed build error [\#84](https://github.com/icanos/hassio-plejd/pull/84) ([icanos](https://github.com/icanos)) + +## 0.4.5 (2020-03-26) + +**Merged pull requests:** + - fixed build error and upped version [\#81](https://github.com/icanos/hassio-plejd/pull/81) ([icanos](https://github.com/icanos)) ## 0.4.4 (2020-03-19) diff --git a/plejd/config.json b/plejd/config.json index 5cd9309..ff4b460 100644 --- a/plejd/config.json +++ b/plejd/config.json @@ -1,6 +1,6 @@ { "name": "Plejd", - "version": "0.4.8", + "version": "0.5.0", "slug": "plejd", "description": "Adds support for the Swedish home automation devices from Plejd.", "url": "https://github.com/icanos/hassio-plejd/", diff --git a/plejd/main.js b/plejd/main.js index de3accd..f56277e 100644 --- a/plejd/main.js +++ b/plejd/main.js @@ -8,7 +8,7 @@ const Configuration = require('./Configuration'); const logger = Logger.getLogger('plejd-main'); -const version = '0.4.8'; +const version = '0.5.0'; async function main() { logger.info(`Starting Plejd add-on v. ${version}`);