Skip to content

Commit ad5229a

Browse files
authored
fix(release): include sdk in fixed-version bump (#1363)
1 parent 7a99cce commit ad5229a

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperframes/sdk",
3-
"version": "0.6.86",
3+
"version": "0.6.91",
44
"description": "Headless, framework-neutral HyperFrames composition editing engine",
55
"repository": {
66
"type": "git",

scripts/set-version.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,12 @@ describe("changed-path guard", () => {
116116
const allowed = releaseAllowedPaths("1.2.3");
117117
assert.deepEqual(
118118
findUnexpectedChanges(
119-
["packages/core/package.json", ".claude-plugin/plugin.json", "releases/v1.2.3.md"],
119+
[
120+
"packages/core/package.json",
121+
"packages/sdk/package.json",
122+
".claude-plugin/plugin.json",
123+
"releases/v1.2.3.md",
124+
],
120125
allowed,
121126
),
122127
[],

scripts/set-version.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ const PACKAGES = [
3030
"packages/cli",
3131
"packages/aws-lambda",
3232
"packages/gcp-cloud-run",
33+
"packages/sdk",
3334
];
3435

3536
const PLUGINS = [".claude-plugin", ".codex-plugin", ".cursor-plugin"];

0 commit comments

Comments
 (0)