@onkernel/cli 0.1.5 → 0.2.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 +2 -1
  2. package/package.json +19 -19
package/README.md CHANGED
@@ -50,7 +50,7 @@ Prerequisites:
50
50
 
51
51
  - Make sure you are logged in to the prod AWS account with `aws sso login --sso-session=kernel` + `export AWS_PROFILE=kernel-prod`. This is necessary to publish releases to S3.
52
52
 
53
- On main, run:
53
+ With a clean tree on the branch you want to release (can be main or a pr branch you're about to merge, doesn't matter), run:
54
54
 
55
55
  ```bash
56
56
  make release-dry-run
@@ -62,6 +62,7 @@ You should see one error about there not being a git tag, and that's fine.
62
62
  To actually release, run:
63
63
 
64
64
  ```bash
65
+ # use `git tag -l | grep cli` to find the latest version and what you want to bump it to
65
66
  export VERSION=0.1.1
66
67
  git tag -a cli/v$VERSION -m "Bugfixes"
67
68
  git push origin cli/v$VERSION
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onkernel/cli",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "CLI for Kernel deployment and invocation",
5
5
  "scripts": {
6
6
  "postinstall": "node install.js",
@@ -33,75 +33,75 @@
33
33
  },
34
34
  "archives": {
35
35
  "darwin-arm64": {
36
- "name": "kernel_0.1.5_darwin_arm64.tar.gz",
37
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_darwin_arm64.tar.gz",
36
+ "name": "kernel_0.2.0_darwin_arm64.tar.gz",
37
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_darwin_arm64.tar.gz",
38
38
  "bins": [
39
39
  "kernel"
40
40
  ],
41
41
  "format": "tar.gz",
42
42
  "checksum": {
43
43
  "algorithm": "sha256",
44
- "digest": "5ededd72d5998c5253d2e5fb05e5ac97bb96376545710ada564e0c48d806fb8a"
44
+ "digest": "450b23ddd53385fda6c17dffdf6fa66f1a48613378b289693c4da46b8cac348a"
45
45
  }
46
46
  },
47
47
  "darwin-x64": {
48
- "name": "kernel_0.1.5_darwin_amd64.tar.gz",
49
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_darwin_amd64.tar.gz",
48
+ "name": "kernel_0.2.0_darwin_amd64.tar.gz",
49
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_darwin_amd64.tar.gz",
50
50
  "bins": [
51
51
  "kernel"
52
52
  ],
53
53
  "format": "tar.gz",
54
54
  "checksum": {
55
55
  "algorithm": "sha256",
56
- "digest": "2b0f1bff32a5047331100915adce228f3ded2871a47ef0d53e139a0049412c8c"
56
+ "digest": "2ea14a42364c7f1c022ee6e26c16469331818e42e633a2a92e0c60b0034f4742"
57
57
  }
58
58
  },
59
59
  "linux-arm64": {
60
- "name": "kernel_0.1.5_linux_arm64.tar.gz",
61
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_linux_arm64.tar.gz",
60
+ "name": "kernel_0.2.0_linux_arm64.tar.gz",
61
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_linux_arm64.tar.gz",
62
62
  "bins": [
63
63
  "kernel"
64
64
  ],
65
65
  "format": "tar.gz",
66
66
  "checksum": {
67
67
  "algorithm": "sha256",
68
- "digest": "d06bdc460c6f3b3c4c8de7b6d1a0c8b9128f2e9dc77a5662fed3a68c0cdba695"
68
+ "digest": "750ccfc053b31ad616c39e9962dff5a4969e69312959d782b294c2cf69f0330d"
69
69
  }
70
70
  },
71
71
  "linux-x64": {
72
- "name": "kernel_0.1.5_linux_amd64.tar.gz",
73
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_linux_amd64.tar.gz",
72
+ "name": "kernel_0.2.0_linux_amd64.tar.gz",
73
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_linux_amd64.tar.gz",
74
74
  "bins": [
75
75
  "kernel"
76
76
  ],
77
77
  "format": "tar.gz",
78
78
  "checksum": {
79
79
  "algorithm": "sha256",
80
- "digest": "fc7e47b2261c75df494d02d6c69eaee8541f98f6991568ebc9de0b0957d7afa4"
80
+ "digest": "424fb860fdadce72589cf16e5a89fd59c5e7be4d6d9fd0553e4e68d57bfb3128"
81
81
  }
82
82
  },
83
83
  "win32-arm64": {
84
- "name": "kernel_0.1.5_windows_arm64.tar.gz",
85
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_windows_arm64.tar.gz",
84
+ "name": "kernel_0.2.0_windows_arm64.tar.gz",
85
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_windows_arm64.tar.gz",
86
86
  "bins": [
87
87
  "kernel.exe"
88
88
  ],
89
89
  "format": "tar.gz",
90
90
  "checksum": {
91
91
  "algorithm": "sha256",
92
- "digest": "4cb1649719186dd37ec0d7380005696a5d27abbae3d3365c4771519992b9555f"
92
+ "digest": "fa45dade577038961541234a5b8dfbf47ff74977b0222e0a955d34c5adbcf203"
93
93
  }
94
94
  },
95
95
  "win32-x64": {
96
- "name": "kernel_0.1.5_windows_amd64.tar.gz",
97
- "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.1.5/kernel_0.1.5_windows_amd64.tar.gz",
96
+ "name": "kernel_0.2.0_windows_amd64.tar.gz",
97
+ "url": "https://onkernel-public.s3.us-east-1.amazonaws.com/releases/download/cli/0.2.0/kernel_0.2.0_windows_amd64.tar.gz",
98
98
  "bins": [
99
99
  "kernel.exe"
100
100
  ],
101
101
  "format": "tar.gz",
102
102
  "checksum": {
103
103
  "algorithm": "sha256",
104
- "digest": "a647ce268763bb48fcaf7556ec47d03f0e4c4e0d16556a77348d4d016aadfc83"
104
+ "digest": "aa57220c9e862452ec21e16d4b30455ea3c40cf32bd05de9d954ef2441d40125"
105
105
  }
106
106
  }
107
107
  }