diff --git a/CHANGELOG.md b/CHANGELOG.md index 24d56c2..c32b581 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v1.8.0 - 2022-04-17 + +### Added + +* Added support for reading ScreenLogic time packets. +* Added support for getting system history data. This includes temperature readings over time as well as circuit on/off changes over time. + +### Fixed + +* Updated dependencies to safer versions of some packages. +* Fixed day-of-week conversion from Javascript Date objects to ScreenLogic times (SLTimes are 1-based starting on Sunday). + +### Changed + +* Alphabetized the readme. + ## v1.7.0 - 2021-10-13 ### Added diff --git a/package-lock.json b/package-lock.json index 2531601..e0c0515 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "node-screenlogic", - "version": "1.7.0", + "version": "1.8.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "node-screenlogic", - "version": "1.7.0", + "version": "1.8.0", "license": "MIT", "dependencies": { "debug": "^4.3.2", diff --git a/package.json b/package.json index 49e0f66..37de2fa 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "node-screenlogic", "description": "Tool for connecting to Pentair ScreenLogic systems on the local network", - "version": "1.7.0", + "version": "1.8.0", "main": "index.js", "license": "MIT", "repository": "https://github.com/parnic/node-screenlogic.git",