From 40bf252852fea748e1f11b0d017ba22839353f0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Fri, 15 Dec 2017 04:03:51 +0100 Subject: [PATCH] Bump version to 8.0.0. Update version numbers. Update changelog. --- CHANGELOG.md | 8 ++++++++ lib/agent | 2 +- scripts/package.json | 6 +++--- shared/versions.h | 6 +++--- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a21828a..a00116f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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. +## [8.0.0] - 2017-12-15 + +Device Protocol: 4.**1.0** | Module Protocol: **4.0.0** | User Config: 4.0.0 | Hardware Config: 1.0.0 + +- Make the modules transfer the module protocol version and firmware version composed of a major, a minor and a patch number. `MODULEPROTOCOL:MAJOR` +- Query module key count and pointer count in separate messages instead of a combined message for improved clarity. `MODULEPROTOCOL:MAJOR` +- Add new UsbCommand_GetModuleProperties() device protocol command. `DEVICEPROTOCOL:MINOR` + ## [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 diff --git a/lib/agent b/lib/agent index 2702a74..b32c93f 160000 --- a/lib/agent +++ b/lib/agent @@ -1 +1 @@ -Subproject commit 2702a740359c717d922752128d357e2ce7c45b06 +Subproject commit b32c93f0f88f165748be225e50717a045f6b0f9d diff --git a/scripts/package.json b/scripts/package.json index 15af4e9..9d7b2a6 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -15,9 +15,9 @@ "commander": "^2.11.0", "shelljs": "^0.7.8" }, - "firmwareVersion": "7.0.0", - "deviceProtocolVersion": "4.0.0", - "moduleProtocolVersion": "3.0.0", + "firmwareVersion": "8.0.0", + "deviceProtocolVersion": "4.1.0", + "moduleProtocolVersion": "4.0.0", "userConfigVersion": "4.0.0", "hardwareConfigVersion": "1.0.0", "devices": [ diff --git a/shared/versions.h b/shared/versions.h index 65c9610..a3818b2 100644 --- a/shared/versions.h +++ b/shared/versions.h @@ -18,15 +18,15 @@ // Variables: - #define FIRMWARE_MAJOR_VERSION 7 + #define FIRMWARE_MAJOR_VERSION 8 #define FIRMWARE_MINOR_VERSION 0 #define FIRMWARE_PATCH_VERSION 0 #define DEVICE_PROTOCOL_MAJOR_VERSION 4 - #define DEVICE_PROTOCOL_MINOR_VERSION 0 + #define DEVICE_PROTOCOL_MINOR_VERSION 1 #define DEVICE_PROTOCOL_PATCH_VERSION 0 - #define MODULE_PROTOCOL_MAJOR_VERSION 3 + #define MODULE_PROTOCOL_MAJOR_VERSION 4 #define MODULE_PROTOCOL_MINOR_VERSION 0 #define MODULE_PROTOCOL_PATCH_VERSION 0