@colony2/c2j 0.0.26 → 0.0.28

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 +15 -0
  2. package/package.json +13 -13
package/README.md CHANGED
@@ -20,6 +20,7 @@ Examples below assume you are running from the repo root.
20
20
  c2j self
21
21
  c2j cells
22
22
  c2j init
23
+ c2j version
23
24
  c2j submit
24
25
  c2j run
25
26
  c2j run one
@@ -32,6 +33,20 @@ c2j test
32
33
 
33
34
  Use `go run ./cmd/c2j --help` or `c2j --help` to see the full command tree.
34
35
 
36
+ ## Version Information
37
+
38
+ Use the `version` subcommand to identify the exact executable you are running:
39
+
40
+ ```bash
41
+ c2j version
42
+ ```
43
+
44
+ Release builds report the release version injected by the release pipeline. Local
45
+ `go build`, `go run`, and `go install` builds fall back to Go's embedded VCS
46
+ metadata, so untagged builds include the current git revision when it is
47
+ available. Dirty suffixes are only included when Go reports that the worktree was
48
+ modified at build time.
49
+
35
50
  ## Quick Start
36
51
 
37
52
  ### 1. Check current-cell resolution
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@colony2/c2j",
3
3
  "type": "module",
4
- "version": "0.0.26",
4
+ "version": "0.0.28",
5
5
  "description": "c2j job system",
6
6
  "scripts": {
7
7
  "postinstall": "node install.js",
@@ -30,51 +30,51 @@
30
30
  },
31
31
  "archives": {
32
32
  "darwin-arm64": {
33
- "name": "c2j_0.0.26_Darwin_arm64.tar.gz",
34
- "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.26/c2j_0.0.26_Darwin_arm64.tar.gz",
33
+ "name": "c2j_0.0.28_Darwin_arm64.tar.gz",
34
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.28/c2j_0.0.28_Darwin_arm64.tar.gz",
35
35
  "bins": [
36
36
  "c2j"
37
37
  ],
38
38
  "format": "tar.gz",
39
39
  "checksum": {
40
40
  "algorithm": "sha256",
41
- "digest": "613e024d9d7df5cd30d7ca1ec2c26d787247a8dcee12b33e6fe89a56550c6c9d"
41
+ "digest": "451151a9ffd8c7c05a0b0956572644cd31bfdc7af7282f2066d619664fa832f2"
42
42
  }
43
43
  },
44
44
  "darwin-x64": {
45
- "name": "c2j_0.0.26_Darwin_x86_64.tar.gz",
46
- "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.26/c2j_0.0.26_Darwin_x86_64.tar.gz",
45
+ "name": "c2j_0.0.28_Darwin_x86_64.tar.gz",
46
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.28/c2j_0.0.28_Darwin_x86_64.tar.gz",
47
47
  "bins": [
48
48
  "c2j"
49
49
  ],
50
50
  "format": "tar.gz",
51
51
  "checksum": {
52
52
  "algorithm": "sha256",
53
- "digest": "6eec8a6052ba9ae4f0166f68352e1efef179b8a6a794d824c630df04be10541c"
53
+ "digest": "d7f494afa87f3ee89a320408dda572bbf59677ff55bcc03dc771e7c834ed1144"
54
54
  }
55
55
  },
56
56
  "linux-arm64": {
57
- "name": "c2j_0.0.26_Linux_arm64.tar.gz",
58
- "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.26/c2j_0.0.26_Linux_arm64.tar.gz",
57
+ "name": "c2j_0.0.28_Linux_arm64.tar.gz",
58
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.28/c2j_0.0.28_Linux_arm64.tar.gz",
59
59
  "bins": [
60
60
  "c2j"
61
61
  ],
62
62
  "format": "tar.gz",
63
63
  "checksum": {
64
64
  "algorithm": "sha256",
65
- "digest": "9724ff15f5e8a72b439f9290add13ad9aa8da660f81c1c83389326004f754e0a"
65
+ "digest": "5c0ea6a2457bc17f0cd29aa3dcba067cfff5fabce90ed2370eafbcc29d4c8f12"
66
66
  }
67
67
  },
68
68
  "linux-x64": {
69
- "name": "c2j_0.0.26_Linux_x86_64.tar.gz",
70
- "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.26/c2j_0.0.26_Linux_x86_64.tar.gz",
69
+ "name": "c2j_0.0.28_Linux_x86_64.tar.gz",
70
+ "url": "https://github.com/colony-2/c2j-release/releases/download/v0.0.28/c2j_0.0.28_Linux_x86_64.tar.gz",
71
71
  "bins": [
72
72
  "c2j"
73
73
  ],
74
74
  "format": "tar.gz",
75
75
  "checksum": {
76
76
  "algorithm": "sha256",
77
- "digest": "5c20df4b277e361ba6c8c22fe4ba884ef99d3e34ebe031c98b42f6e45e60ba76"
77
+ "digest": "071c5287d25188c03483516a2a52ce2662ec590ce818c655fabc184df96ed9fd"
78
78
  }
79
79
  }
80
80
  },