patchrelay 0.9.1 → 0.10.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.9.1",
4
- "commit": "cb0e47c488a3",
5
- "builtAt": "2026-03-22T18:27:36.425Z"
3
+ "version": "0.10.0",
4
+ "commit": "5cb66438689e",
5
+ "builtAt": "2026-03-22T18:39:48.709Z"
6
6
  }
package/dist/cli/index.js CHANGED
@@ -108,6 +108,11 @@ export async function runCli(argv, options) {
108
108
  let commandArgs;
109
109
  try {
110
110
  parsed = parseArgs(argv);
111
+ if (parsed.flags.get("version") === true) {
112
+ const buildInfo = getBuildInfo();
113
+ writeOutput(stdout, `${buildInfo.version}\n`);
114
+ return 0;
115
+ }
111
116
  ({ command, commandArgs } = resolveCommand(parsed));
112
117
  validateFlags(command, commandArgs, parsed);
113
118
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {