homebridge-zencontrol-tpi 1.0.4 → 1.1.0-next.0

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/README.md +19 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,3 +4,22 @@ A plugin for Homebridge that enables control over lights using Zencontrol Third
4
4
 
5
5
  ## Testing
6
6
 
7
+ ## Releasing
8
+
9
+ ### Pre-release
10
+
11
+ To enter pre-release mode:
12
+
13
+ ```shell
14
+ pnpm changeset pre enter next
15
+ git add .changeset/pre.json
16
+ git commit -m "publish: enter prerelease"
17
+ ```
18
+
19
+ Once you've made changes and committed one or more changesets; bump the version:
20
+
21
+ ```shell
22
+ pnpm changeset version
23
+ git commit -a -m "publish: prerelease"
24
+ pnpm changeset publish
25
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homebridge-zencontrol-tpi",
3
- "version": "1.0.4",
3
+ "version": "1.1.0-next.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",