@akospasztor/homebridge-create-ceiling-fan 1.2.0 → 1.2.2

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 +14 -3
  2. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -3,18 +3,29 @@
3
3
  All notable changes to this project will be documented in this file. This
4
4
  project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
- ## [1.2.0] - 2025-09-19
6
+ ## 1.2.2 (2025-09-22)
7
+
8
+ - Revert changelog format
9
+ - Add missing changelog entry for release 1.2.1
10
+
11
+ ## 1.2.1 (2025-09-22)
12
+
13
+ - Improve package visibility & indexing
14
+ - Add publishConfig to package.json
15
+ - Add `homebridge` keyword to package.json
16
+
17
+ ## 1.2.0 (2025-09-19)
7
18
 
8
19
  - Rename the plugin name in settings.ts to match the name in package.json
9
20
  - Fix changelog format for Homebridge UI
10
21
 
11
- ## [1.1.0] - 2025-09-19
22
+ ## 1.1.0 (2025-09-19)
12
23
 
13
24
  - Use dropdown for device light option selection in the configuration
14
25
  - Improve device communication by adding a timeout mechanism for sending a set
15
26
  device status command to the device
16
27
  - Improve documentation wording
17
28
 
18
- ## [1.0.0] - 2025-09-19
29
+ ## 1.0.0 (2025-09-19)
19
30
 
20
31
  - Initial release
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@akospasztor/homebridge-create-ceiling-fan",
3
3
  "displayName": "Homebridge Create Ceiling Fan",
4
4
  "type": "module",
5
- "version": "1.2.0",
5
+ "version": "1.2.2",
6
6
  "private": false,
7
7
  "description": "Homebridge plugin for CREATE ceiling fans",
8
8
  "author": "Akos Pasztor",
@@ -17,6 +17,7 @@
17
17
  },
18
18
  "keywords": [
19
19
  "homebridge-plugin",
20
+ "homebridge",
20
21
  "ceiling fan",
21
22
  "fan",
22
23
  "create",
@@ -31,6 +32,9 @@
31
32
  "config.schema.json",
32
33
  "CHANGELOG.md"
33
34
  ],
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
34
38
  "engines": {
35
39
  "node": "^18.20.4 || ^20.18.0 || ^22.10.0",
36
40
  "homebridge": "^1.8.0 || ^2.0.0-beta.0"