Skip to content

Commit b892ac0

Browse files
committed
chore(release): v0.5.0 – code cleanup, workflow improvements, and minor refactors
1 parent 5347d16 commit b892ac0

13 files changed

Lines changed: 15 additions & 15 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.4.0` |
58+
| **release** | Version tags and changelog updates | `release: v0.5.0` |
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.4.0` |
125+
| 🚀 | release | `🚀 release: v0.5.0` |
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.4.0`
140+
- `release: v0.5.0`
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.4.0`).
157+
1. Triggered on pushing a version tag (e.g. `v0.5.0`).
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.4.0 and developed in a monorepo. We aim to patch the latest minor version only.
5+
StatikAPI is currently v0.5.0 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.4.0",
4+
"version": "0.5.0",
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.4.0",
5+
"version": "0.5.0",
66
"workspaces": [
77
"packages/*"
88
],

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.4.0",
3+
"version": "0.5.0",
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.4.0",
3+
"version": "0.5.0",
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
@@ -351,7 +351,7 @@ async function patchPkgJson(dest, appName, { pkgMgr }) {
351351
'dev:headless': 'statikapi dev --no-ui',
352352
'build:api': 'statikapi build',
353353
};
354-
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.4.0' };
354+
json.devDependencies = { ...(json.devDependencies || {}), statikapi: '^0.5.0' };
355355

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

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.4.0",
3+
"version": "0.5.0",
44
"type": "module",
55
"bin": {
66
"create-statikapi": "bin/create-statikapi.js"

packages/create-statikapi/templates/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"dev:headless": "statikapi dev --no-ui"
99
},
1010
"devDependencies": {
11-
"statikapi": "^0.4.0"
11+
"statikapi": "^0.5.0"
1212
}
1313
}

0 commit comments

Comments
 (0)