Skip to content

Commit cfcac0a

Browse files
committed
chore: release v0.8.1
1 parent a9bcc03 commit cfcac0a

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.agents/.airc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "github"
77
},
88
"prFlow": "required",
9-
"templateVersion": "v0.8.0",
9+
"templateVersion": "v0.8.1",
1010
"sandbox": {
1111
"engine": "orbstack",
1212
"runtimes": [

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Node.js
2020
uses: actions/setup-node@v6
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
registry-url: https://registry.npmjs.org
2424
cache: npm
2525

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fitlab-ai/agent-infra",
3-
"version": "0.8.1-alpha.0",
3+
"version": "0.8.1",
44
"description": "Bootstrap tool for AI multi-tool collaboration infrastructure — works with Claude Code, Codex, Gemini CLI, and OpenCode",
55
"license": "MIT",
66
"type": "module",

tests/unit/core/release.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ test("package metadata supports scoped npm publishing", () => {
8888
assert.match(pkg.scripts.prepublishOnly, /tests\/\*\*\/\*\.test\.ts/);
8989
});
9090

91-
test("Node baseline stays aligned across metadata and automation", () => {
91+
test("Node runtime baseline and release publisher baseline stay pinned", () => {
9292
const pkg = JSON.parse(read("package.json"));
9393
const lock = JSON.parse(read("package-lock.json")) as PackageLock;
9494

@@ -110,7 +110,7 @@ test("Node baseline stays aligned across metadata and automation", () => {
110110
const releaseSteps = releaseWorkflow.jobs?.["npm-publish"]?.steps ?? [];
111111
const setupNodeStep = releaseSteps.find((step) => step.uses === "actions/setup-node@v6");
112112
assert.ok(setupNodeStep, "actions/setup-node@v6 step not found in release workflow");
113-
assert.equal(String(setupNodeStep?.with?.["node-version"]), "22");
113+
assert.equal(String(setupNodeStep?.with?.["node-version"]), "24");
114114

115115
const dependabot = parse(read(".github/dependabot.yml")) as DependabotConfig;
116116
const npmUpdates = dependabot.updates?.find(

0 commit comments

Comments
 (0)