Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/protocol-version-14.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@objectstack/spec": patch
---

Sync `PROTOCOL_VERSION` to `14.0.0` — the 14.0.0 release bumped `package.json` but the handshake constant still said 13, so `protocol-version.test.ts` failed on main for every PR. (Process note: the changesets Version PR cannot bump source constants; the protocol bump must accompany each major.)
2 changes: 1 addition & 1 deletion packages/spec/src/kernel/protocol-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Kept in lockstep with the package's own major; `protocol-version.test.ts`
* asserts it against `package.json` so the two cannot drift.
*/
export const PROTOCOL_VERSION = '13.0.0';
export const PROTOCOL_VERSION = '14.0.0';

/** The protocol major as an integer — the value the handshake compares. */
export const PROTOCOL_MAJOR: number = Number.parseInt(PROTOCOL_VERSION.split('.')[0]!, 10);