Merge pull request #156 from SweVictor/feature/lf-fix

Version bump to 0.5.1 due to CRLF issue that broke startup
This commit is contained in:
Victor 2021-01-30 11:02:00 +01:00 committed by GitHub
commit 8719cda8a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 2 deletions

View file

@ -1,5 +1,13 @@
# 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)
[Full Changelog](https://github.com/icanos/hassio-plejd/compare/0.4.8...0.5.0)
@ -23,6 +31,7 @@
**Closed issues:**
- 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)
- 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)

View file

@ -1,6 +1,6 @@
{
"name": "Plejd",
"version": "0.5.0",
"version": "0.5.1",
"slug": "plejd",
"description": "Adds support for the Swedish home automation devices from 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 version = '0.5.0';
const version = '0.5.1';
async function main() {
logger.info(`Starting Plejd add-on v. ${version}`);