diff --git a/CHANGELOG.md b/CHANGELOG.md index 299ad2e..a21828a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to the [UHK Versioning](VERSIONING.md) conventions. +## [7.0.0] - 2017-12-14 + +Device Protocol: **4.0.0** | Module Protocol: 3.0.0 | User Config: 4.0.0 | Hardware Config: 1.0.0 + +- Make UsbCommand_JumpToModuleBootloader() more robust by not making it dependent on the state of the module driver. +- Don't make horizontal scrolling and vertical scrolling affect each other. +- Expose version numbers via the get property interface. `DEVICEPROTOCOL:MINOR` +- Add DevicePropertyId_ConfigSizes. `DEVICEPROTOCOL:MINOR` +- Remove DevicePropertyId_HardwareConfigSize and DevicePropertyId_UserConfigSize. `DEVICEPROTOCOL:MAJOR` + ## [6.0.0] - 2017-12-12 Device Protocol: **3.0.0** | Module Protocol: 3.0.0 | User Config: 4.0.0 | Hardware Config: 1.0.0 diff --git a/scripts/package.json b/scripts/package.json index dcf4c8a..15af4e9 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,8 +15,8 @@ "commander": "^2.11.0", "shelljs": "^0.7.8" }, - "firmwareVersion": "6.0.0", - "deviceProtocolVersion": "3.0.0", + "firmwareVersion": "7.0.0", + "deviceProtocolVersion": "4.0.0", "moduleProtocolVersion": "3.0.0", "userConfigVersion": "4.0.0", "hardwareConfigVersion": "1.0.0",