Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
* Correct `switch` statement for fall through condition in `getUserInfo()` function.
* Confirm latest @dependabot updates.
* Removed node v10.x from support versions.
  • Loading branch information
DMBlakeley committed May 21, 2021
1 parent 5953657 commit dda09b1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
# the Node.js versions to build on (homebridge only supports even-numbered releases)
node-version: [10.x, 12.x, 14.x, 16.x]
node-version: [12.x, 14.x, 16.x]

steps:
- uses: actions/checkout@v2
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file. This project uses [Semantic Versioning](https://semver.org/).

## v5.8.9
* Correct `switch` statement for fall through condition in `getUserInfo()` function.
* Confirm latest @dependabot updates.
* Removed node v10.x from support versions.

## v5.8.8
* Added node v16.x to supported versions.
* Housekeeping. No functional changes.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": false,
"displayName": "Homebridge Awair2",
"name": "homebridge-awair2",
"version": "5.8.8",
"version": "5.8.9",
"description": "HomeKit integration of Awair air quality monitor as Dynamic Platform.",
"main": "dist/index.js",
"scripts": {
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,6 @@ class AwairPlatform implements DynamicPlatformPlugin {
this.latest = parseFloat(permission.quota);
break;
default:
this.log('getUserInfo error: Quota not defined.');
break;
}
});
Expand Down

0 comments on commit dda09b1

Please sign in to comment.