magicbell-cli 0.2.1 → 0.3.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.
package/.goreleaser.yaml CHANGED
@@ -27,6 +27,11 @@ builds:
27
27
  - amd64
28
28
  - arm64
29
29
  - 386
30
+ ldflags:
31
+ - -s -w
32
+ - -X main.Version={{ .Env.GORELEASER_CURRENT_TAG }}
33
+ - -X main.Commit={{ .ShortCommit }}
34
+ - -X main.Date={{ .Date }}
30
35
 
31
36
  dist: dist
32
37
  archives:
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # magicbell-cli
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#7206](https://github.com/magicbell/magicbell/pull/7206) [`2e2d423`](https://github.com/magicbell/magicbell/commit/2e2d4232b35b62cb7fb46b7b76e075a9553cb34b) Thanks [@smeijer](https://github.com/smeijer)! - `magicbell --version` now prints the installed version
8
+
9
+ ### Patch Changes
10
+
11
+ - [#7203](https://github.com/magicbell/magicbell/pull/7203) [`7385add`](https://github.com/magicbell/magicbell/commit/7385add4f12c49c585e34895b30d4ec6c46af6fe) Thanks [@smeijer](https://github.com/smeijer)! - revert v2 change
12
+
13
+ ## 0.2.2
14
+
15
+ ### Patch Changes
16
+
17
+ - [#7201](https://github.com/magicbell/magicbell/pull/7201) [`602947a`](https://github.com/magicbell/magicbell/commit/602947ac97e2de52d91463be5a94a53c4729a26a) Thanks [@smeijer](https://github.com/smeijer)! - remove pinst dependency
18
+
3
19
  ## 0.2.1
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -1,16 +1,15 @@
1
1
  {
2
2
  "name": "magicbell-cli",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "MagicBell CLI",
5
5
  "dependencies": {
6
- "golang-npm": "^0.0.6",
7
- "pinst": "^3.0.0"
6
+ "golang-npm": "^0.0.6"
8
7
  },
9
8
  "scripts": {
10
9
  "postinstall": "golang-npm install",
11
10
  "preuninstall": "golang-npm uninstall",
12
- "prepack": "pinst --enable",
13
- "postpack": "pinst --disable",
11
+ "prepack": "npx -y pinst --enable",
12
+ "postpack": "npx -y pinst --disable",
14
13
  "test": "echo \"Error: no test specified\" && exit 1"
15
14
  },
16
15
  "author": "MagicBell",