Skip to content

Commit c1cee27

Browse files
committed
release: v0.6.1 - fixing workflow
1 parent 63e9b16 commit c1cee27

15 files changed

Lines changed: 17 additions & 17 deletions

File tree

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ type(scope): subject
5555
| **chore** | Maintenance / tooling | `chore(repo): align .editorconfig + prettier config` |
5656
| **security** | Security patch | `security(cli): sanitize route param printing` |
5757
| **deps** | Dependency bump | `deps(ui): upgrade react to 18.3.1` |
58-
| **release** | Version tags and changelog updates | `release: v0.6.1` |
58+
| **release** | Version tags and changelog updates | `release: v0.6.2` |
5959

6060
---
6161

@@ -122,7 +122,7 @@ Use `statikapi dev` for incremental rebuilds.
122122
| 🧪 | test | `🧪 test(router): stable route order` |
123123
| 🔧 | chore | `🔧 chore(repo): update pnpm lockfile` |
124124
| 🛠️ | build | `🛠️ build(ui): add vite alias` |
125-
| 🚀 | release | `🚀 release: v0.6.1` |
125+
| 🚀 | release | `🚀 release: v0.6.2` |
126126

127127
---
128128

@@ -137,7 +137,7 @@ Use `statikapi dev` for incremental rebuilds.
137137
- `ci: publish order core → cli → create-statikapi`
138138
- `test(router): stable ordering for static/dynamic/catchall`
139139
- `chore(repo): add pnpm-workspace.yaml`
140-
- `release: v0.6.1`
140+
- `release: v0.6.2`
141141

142142
---
143143

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Tests cover:
154154

155155
Publishing is automated via **GitHub Actions** (`.github/workflows/release.yml`):
156156

157-
1. Triggered on pushing a version tag (e.g. `v0.6.1`).
157+
1. Triggered on pushing a version tag (e.g. `v0.6.2`).
158158
2. Verifies tag version matches `package.json` across packages.
159159
3. Builds & embeds the UI.
160160
4. Packs and publishes in order:

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Supported Versions
44

5-
StatikAPI is currently v0.6.1 and developed in a monorepo. We aim to patch the latest minor version only.
5+
StatikAPI is currently v0.6.2 and developed in a monorepo. We aim to patch the latest minor version only.
66

77
| Version | Supported |
88
| ------- | --------- |

docs/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "StatikAPI",
33
"description": "Build static JSON endpoints from filesystem modules — like Next.js static export, but for APIs.",
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"lastUpdated": "2025-11-09T02:00:00.000Z",
66
"repo": "https://github.com/zonayedpca/statikapi"
77
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@statikapi/monorepo",
33
"private": true,
44
"type": "module",
5-
"version": "0.6.1",
5+
"version": "0.6.2",
66
"workspaces": [
77
"packages/*"
88
],

packages/adapter-cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@statikapi/adapter-cf",
3-
"version": "0.6.0",
3+
"version": "0.6.2",
44
"type": "module",
55
"bin": {
66
"statikapi-cf": "bin/statikapi-cf.js"

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "statikapi",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/zonayedpca/statikapi",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@statikapi/core",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/zonayedpca/statikapi",

packages/create-statikapi/bin/create-statikapi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ async function patchPkgJson(dest, appName, { pkgMgr, template, srcDir }) {
527527
'dev:headless': 'statikapi dev --no-ui',
528528
'build:api': 'statikapi build',
529529
};
530-
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.6.1' };
530+
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.6.2' };
531531

532532
await fs.writeFile(p, JSON.stringify(json, null, 2) + '\n', 'utf8');
533533
}

packages/create-statikapi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-statikapi",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"type": "module",
55
"bin": {
66
"create-statikapi": "bin/create-statikapi.js"

0 commit comments

Comments
 (0)