@uboness/homebridge-mqtt 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +7 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [0.1.1](https://github.com/uboness/{{name}}/compare/v0.1.0...v0.1.1) (2025-08-12)
6
+
7
+
8
+ ### Features
9
+
10
+ * officially support node 22 ([224b666](https://github.com/uboness/{{name}}/commit/224b666c2a4b74e842245e1b64dded68168bee01))
11
+
5
12
  ## [0.1.0](https://github.com/uboness/{{name}}/compare/v0.0.14...v0.1.0) (2025-08-12)
6
13
 
7
14
  ## [0.0.14](https://github.com/uboness/{{name}}/compare/v0.0.13...v0.0.14) (2025-08-12)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uboness/homebridge-mqtt",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "author": "uboness",
5
5
  "publishConfig": {
6
6
  "@uboness:registry": "https://registry.npmjs.org "
@@ -20,7 +20,7 @@
20
20
  "url": "https://github.com/uboness/{{name}}/issues"
21
21
  },
22
22
  "engines": {
23
- "node": "^20.9.0",
23
+ "node": "^20.9.0 || ^22.18.0",
24
24
  "homebridge": "^1.11.0"
25
25
  },
26
26
  "exports": {
@@ -44,10 +44,14 @@
44
44
  "watch": "pnpm run clean && tsc -w",
45
45
  "prepublishOnly": "pnpm run build",
46
46
  "release:bump": "commit-and-tag-version",
47
+ "release:bump-minor": "commit-and-tag-version --release-as minor",
48
+ "release:bump-major": "commit-and-tag-version --release-as major",
47
49
  "release:postbump": "pnpm run release:push && pnpm run release:publish",
48
50
  "release:push": "git push --follow-tags",
49
51
  "release:publish": "npm publish --access public",
50
- "release": "pnpm run release:bump && pnpm run release:push && pnpm run release:publish"
52
+ "release": "pnpm run release:bump && pnpm run release:push && pnpm run release:publish",
53
+ "release-minor": "pnpm run release:bump-minor && pnpm run release:push && pnpm run release:publish",
54
+ "release-major": "pnpm run release:bump-major && pnpm run release:push && pnpm run release:publish"
51
55
  },
52
56
  "devDependencies": {
53
57
  "@inquirer/prompts": "^3.3.2",