diff --git a/CHANGELOG.md b/CHANGELOG.md index f2e0f70..4528edc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [v2.3.1] - 2024-04-08 +### Fixed +* Changed max TokenID size to 24 ([#08](https://github.com/AllMightySauron/homebride-solaxcloud-api/issues/8)). + ## [v2.3.0] - 2024-03-14 ### Changes * Added support for inverters from QCells through the QCells cloud API. diff --git a/config.schema.json b/config.schema.json index b95e911..4b679c4 100644 --- a/config.schema.json +++ b/config.schema.json @@ -31,7 +31,7 @@ "description": "Users get information from the cloud API through the granted tokenID. Please obtain your tokenID on the API page of Solax/QCells cloud.", "default": "20200722185111234567890", "minLength": 23, - "maxLength": 23 + "maxLength": 24 }, "name": { "title": "Inverter name (unique)", diff --git a/package.json b/package.json index eb4f951..0abb43e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": false, "displayName": "Homebridge Solax Cloud API", "name": "homebridge-solaxcloud-api", - "version": "2.3.0", + "version": "2.3.1", "description": "Integrates solar production info using public Solax/QCells Cloud API into Homebridge accessories.", "license": "Apache-2.0", "repository": {