atcoder-workspace 1.1.0-beta.3 → 1.1.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/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atcoder-workspace",
3
- "version": "1.1.0-beta.3",
3
+ "version": "1.1.0",
4
4
  "description": "AtCoder Workspace CLI (Local-first)",
5
5
  "main": "dist/cli.js",
6
6
  "bin": {
@@ -12,7 +12,7 @@
12
12
  "test": "vitest run",
13
13
  "test:watch": "vitest",
14
14
  "dev": "tsx src/cli.ts",
15
- "test-env:setup": "npm run build && npm pack && npm --prefix test install atcoder-workspace-1.1.0-beta.3.tgz"
15
+ "test-env:setup": "npm run build && npm pack && npm --prefix test install atcoder-workspace-1.1.0.tgz"
16
16
  },
17
17
  "keywords": [
18
18
  "atcoder",
package/src/cli.ts CHANGED
@@ -37,7 +37,7 @@ const program = new Command();
37
37
  program
38
38
  .name('atc')
39
39
  .description('AtCoder Workspace')
40
- .version('1.1.0-beta.3');
40
+ .version('1.1.0');
41
41
 
42
42
  function handleAction(fn: (...args: any[]) => Promise<void>) {
43
43
  return async (...args: any[]) => {