@dawnswwwww/zhihu-cli 0.1.2 → 0.1.3
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.
- package/README.md +2 -2
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -91,8 +91,8 @@ See [docs/development.md](docs/development.md) for the full workflow.
|
|
|
91
91
|
Pushing a SemVer tag triggers the release workflow:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
git tag -a v0.1.
|
|
95
|
-
git push origin v0.1.
|
|
94
|
+
git tag -a v0.1.3 -m "Release 0.1.3"
|
|
95
|
+
git push origin v0.1.3
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
This builds cross-platform binaries, creates a GitHub Release, publishes `zhihu-cli` to npm, and updates the Homebrew tap.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dawnswwwww/zhihu-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "CLI for the Zhihu Open Platform API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"README.md"
|
|
16
16
|
],
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@dawnswwwww/zhihu-cli-darwin-x64": "0.1.
|
|
19
|
-
"@dawnswwwww/zhihu-cli-darwin-arm64": "0.1.
|
|
20
|
-
"@dawnswwwww/zhihu-cli-linux-x64": "0.1.
|
|
21
|
-
"@dawnswwwww/zhihu-cli-linux-arm64": "0.1.
|
|
22
|
-
"@dawnswwwww/zhihu-cli-win32-x64": "0.1.
|
|
18
|
+
"@dawnswwwww/zhihu-cli-darwin-x64": "0.1.3",
|
|
19
|
+
"@dawnswwwww/zhihu-cli-darwin-arm64": "0.1.3",
|
|
20
|
+
"@dawnswwwww/zhihu-cli-linux-x64": "0.1.3",
|
|
21
|
+
"@dawnswwwww/zhihu-cli-linux-arm64": "0.1.3",
|
|
22
|
+
"@dawnswwwww/zhihu-cli-win32-x64": "0.1.3"
|
|
23
23
|
},
|
|
24
24
|
"os": ["darwin", "linux", "win32"],
|
|
25
25
|
"cpu": ["x64", "arm64"]
|