From 9bc273f346151239923814058c4a46caecb350c2 Mon Sep 17 00:00:00 2001 From: DutchmanNL Date: Sun, 27 Oct 2024 17:14:57 +0100 Subject: [PATCH] chore: release v0.3.3 * (DutchmanNL) update state definitions, (solves [#77](https://github.com/DrozmotiX/ioBroker.bambulab/issues/77) [#58](https://github.com/DrozmotiX/ioBroker.bambulab/issues/58)) * (DutchmanNL) update connection handling, show connection error only once (Solves #99 #78 #74) --- README.md | 8 ++++---- io-package.json | 4 ++-- lib/state_attr.js | 2 +- package-lock.json | 4 ++-- package.json | 5 +++-- 5 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 957903b..d2dd629 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,8 @@ All of this helps me to provide error-free adapters that basically never crash. Placeholder for the next version (at the beginning of the line): ### **WORK IN PROGRESS** --> -### 0.3.3-beta.1 (2024-10-26) - Bugfixes -* (DutchmanNL) update state definitions, (solves #77 #58) +### 0.3.3 (2024-10-27) - Bugfixes +* (DutchmanNL) update state definitions, (solves [#77](https://github.com/DrozmotiX/ioBroker.bambulab/issues/77) [#58](https://github.com/DrozmotiX/ioBroker.bambulab/issues/58)) * (DutchmanNL) update connection handling, show connection error only once (Solves #99 #78 #74) ### 0.3.2 (2023-11-20) @@ -83,8 +83,8 @@ All of this helps me to provide error-free adapters that basically never crash. ### 0.3.1 (2023-11-20) * (DutchmanNL) Bugfix control P & A Series -* (DutchmanNL) Show end time as a separate state, resolves #53 -* (DutchmanNL) Bugfix resolves missing fan speed value, resolves #36 +* (DutchmanNL) Show end time as a separate state, resolves [#53](https://github.com/DrozmotiX/ioBroker.bambulab/issues/53) +* (DutchmanNL) Bugfix resolves missing fan speed value, resolves [#36](https://github.com/DrozmotiX/ioBroker.bambulab/issues/36) ### 0.3.0 (2023-11-19) - Release candidate * (DutchmanNL) Update dependencies for state handling, resolves #50 diff --git a/io-package.json b/io-package.json index 6570600..20cf8b0 100644 --- a/io-package.json +++ b/io-package.json @@ -1,9 +1,9 @@ { "common": { "name": "bambulab", - "version": "0.3.3-beta.1", + "version": "0.3.3", "news": { - "0.3.3-beta.1": { + "0.3.3": { "en": "update state definitions, (solves #77 #58)\nupdate connection handling, show connection error only once (Solves #99 #78 #74)", "de": "aktualisierung von zustandsdefinitionen, (lösungen #77 #58)\nupdate-Verbindungshandling, Verbindungsfehler nur einmal anzeigen (Solves #99 #78 #74)", "ru": "обновление определений состояния (половки #77 #58)\nобновить обработку подключения, показать ошибку соединения только один раз (Солнце #99 #78 #74)", diff --git a/lib/state_attr.js b/lib/state_attr.js index c7b45e0..0f544ff 100644 --- a/lib/state_attr.js +++ b/lib/state_attr.js @@ -25,7 +25,7 @@ const state_attrb = { 'big_fan2_speed': { 'name': 'Chamber Fan 2 Speed', 'modify': ['tonumber'], - 'type': 'number', + 'type': 'mixed', 'unit': '%', 'role': 'level', 'write': true, diff --git a/package-lock.json b/package-lock.json index 9ab765f..1a7c8c8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "iobroker.bambulab", - "version": "0.3.3-beta.1", + "version": "0.3.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "iobroker.bambulab", - "version": "0.3.3-beta.1", + "version": "0.3.3", "license": "MIT", "dependencies": { "@iobroker/adapter-core": "^3.2.2", diff --git a/package.json b/package.json index d910d92..cbb909d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iobroker.bambulab", - "version": "0.3.3-beta.1", + "version": "0.3.3", "description": "Connects to Bambulab 3d printers to retrieve data of current print and control main aspects", "author": { "name": "DutchmanNL", @@ -73,7 +73,8 @@ "check": "tsc --noEmit -p tsconfig.check.json", "lint": "eslint .", "translate": "translate-adapter", - "release": "release-script" + "release": "release-script --all", + "release-dry": "release-script --all --dry" }, "bugs": { "url": "https://github.com/DrozmotiX/ioBroker.bambulab/issues"