Version bump to 0.5.1 due to CRLF issue that broke startup

This commit is contained in:
Victor Hagelbäck 2021-01-30 10:59:33 +01:00
parent f233147fe9
commit 5528a31685
3 changed files with 11 additions and 2 deletions

View file

@ -1,5 +1,13 @@
# Changelog hassio-plejd Home Assistant Plejd addon # Changelog hassio-plejd Home Assistant Plejd addon
### [0.5.1](https://github.com/icanos/hassio-plejd/tree/0.5.1) (2021-01-30)
[Full Changelog](https://github.com/icanos/hassio-plejd/compare/0.5.0...0.5.1)
**Merged pull requests:**
- Fix CRLF line endings that snuck into plejd.sh [\#155](https://github.com/icanos/hassio-plejd/pull/155) ([SweVictor](https://github.com/SweVictor))
## [0.5.0](https://github.com/icanos/hassio-plejd/tree/0.5.0) (2021-01-30) ## [0.5.0](https://github.com/icanos/hassio-plejd/tree/0.5.0) (2021-01-30)
[Full Changelog](https://github.com/icanos/hassio-plejd/compare/0.4.8...0.5.0) [Full Changelog](https://github.com/icanos/hassio-plejd/compare/0.4.8...0.5.0)
@ -23,6 +31,7 @@
**Closed issues:** **Closed issues:**
- Remove or fix mqtt settings code [\#147](https://github.com/icanos/hassio-plejd/issues/147) - Remove or fix mqtt settings code [\#147](https://github.com/icanos/hassio-plejd/issues/147)
- Errors in BLE cause addon to reinitialize [\#143](https://github.com/icanos/hassio-plejd/issues/143)
- Cannot read property 'length' of undefined - when turning of the light [\#134](https://github.com/icanos/hassio-plejd/issues/134) - 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) - 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) - Request: Clarify versions/readme [\#126](https://github.com/icanos/hassio-plejd/issues/126)

View file

@ -1,6 +1,6 @@
{ {
"name": "Plejd", "name": "Plejd",
"version": "0.5.0", "version": "0.5.1",
"slug": "plejd", "slug": "plejd",
"description": "Adds support for the Swedish home automation devices from Plejd.", "description": "Adds support for the Swedish home automation devices from Plejd.",
"url": "https://github.com/icanos/hassio-plejd/", "url": "https://github.com/icanos/hassio-plejd/",

View file

@ -8,7 +8,7 @@ const Configuration = require('./Configuration');
const logger = Logger.getLogger('plejd-main'); const logger = Logger.getLogger('plejd-main');
const version = '0.5.0'; const version = '0.5.1';
async function main() { async function main() {
logger.info(`Starting Plejd add-on v. ${version}`); logger.info(`Starting Plejd add-on v. ${version}`);