Skip to content

Commit f01f498

Browse files
committed
fix(release): prepare v0.1.1 after CI glob failure
1 parent 2f89065 commit f01f498

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

CREATE_SHAPE_APP_PLAN.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ Build and launch a dedicated `create-shape-app` CLI in its own repository that s
4747
- February 11, 2026: Completed Phase 6 publishing/rollout prep in `package.json`, `.github/workflows/release.yml`, and `docs/builder-kit-quickstart.md`.
4848
- February 11, 2026: Added release lookup retry hardening in `src/template/release.ts` for 429/5xx failures with bounded retries and tests.
4949
- February 11, 2026: Ran release gate validation with `bun run prepack` (lint + type-check + full test suite passed).
50-
- Next implementation target: **Release execution (`v0.1.0`)**.
50+
- February 12, 2026: Attempted release `v0.1.0`; workflow failed in CI due shell-dependent test glob expansion. Fixed test script for shell-agnostic execution and prepared patch release `v0.1.1`.
51+
- Next implementation target: **Release execution (`v0.1.1`)**.
5152

5253
## Validation
5354
- `bun create shape-app my-app --yes --skip-install --skip-git`
@@ -58,7 +59,7 @@ Build and launch a dedicated `create-shape-app` CLI in its own repository that s
5859
- `bun run contracts:compile`
5960

6061
## Rollout
61-
- Publish `v0.1.0` with Builder Kit parity and stable release-tag sourcing.
62+
- Publish `v0.1.1` with Builder Kit parity and stable release-tag sourcing.
6263
- Update Builder Kit README quickstart to default to `create-shape-app`.
6364
- Announce with migration note: direct cloning remains optional, CLI is recommended path.
6465

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CLI for scaffolding Shape apps from the Builder Kit template pinned to release t
44

55
## Status
66

7-
Current release target: `v0.1.0`.
7+
Current release target: `v0.1.1`.
88

99
Implemented:
1010
- Release-tag-only template sourcing from `shape-network/builder-kit`

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-shape-app",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Scaffold Shape Builder Kit projects from pinned release tags.",
55
"license": "MIT",
66
"repository": {
@@ -38,7 +38,7 @@
3838
"type-check": "tsc -p tsconfig.json --noEmit",
3939
"lint": "eslint . --max-warnings=0",
4040
"lint:fix": "eslint . --fix",
41-
"test": "bun run build && node --test ./test/**/*.test.mjs",
41+
"test": "bun run build && node --test ./test/*.test.mjs",
4242
"dev": "bun run build && node ./bin/create-shape-app.js --help",
4343
"prepack": "bun run lint && bun run type-check && bun run test"
4444
},

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { materializeTemplateFromRelease, type MaterializedTemplate } from './tem
88
import { copyTemplateToDirectory, prepareTargetDirectory } from './template/project.js';
99
import { fetchTemplateRelease, type TemplateRelease } from './template/release.js';
1010

11-
export const CLI_VERSION = '0.1.0';
11+
export const CLI_VERSION = '0.1.1';
1212

1313
interface CliRuntime {
1414
env: NodeJS.ProcessEnv;

0 commit comments

Comments
 (0)