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
16 changes: 0 additions & 16 deletions .changeset/reference-host-and-cli.md

This file was deleted.

17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# kit

## 2.12.0

### Minor Changes

- 27e815a: feat: the embeddable reference host and the `shellcade-kit` CLI now ship in the module

The host that runs a wasm game against the ABI is now public under `host/`:
`host/gameabi` (the wasm host), `host/sdk` (the room engine + service
interfaces), `host/render` + `host/canvas` (the 80×24 framebuffer and ANSI
render), `host/blobstore` (hibernation snapshots), `host/memsvc` (in-memory
service implementations), and `host/gameabi/conformance` (the game conformance
harness). `cmd/shellcade-kit` (`new` / `check` / `play` / `smoke`) is built from
that reference host, so the CLI and the conformance gate run the exact host a
game runs on — no separate host binary required.

Additive only: the guest SDK and the ABI are unchanged.

## 2.11.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kit",
"version": "2.11.1",
"version": "2.12.0",
"private": true,
"description": "Version management for the shellcade gamekit (Go module + CLI). Versions and changelogs are driven by changesets; binaries by GoReleaser.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

[package]
name = "shellcade-kit"
version = "2.11.1"
version = "2.12.0"
edition = "2021"
# #[unsafe(no_mangle)] (emitted by shellcade_game! so expansions survive
# edition-2024 game crates) stabilized in 1.82.
Expand Down
Loading