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
11 changes: 0 additions & 11 deletions .changeset/embed-cli-version.md

This file was deleted.

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

## 2.12.2

### Patch Changes

- 8e78569: `shellcade-kit version` now reports the real release version instead of
`(devel)`/`(unknown)`. GoReleaser builds the binary with plain `go build`, so
`debug.ReadBuildInfo().Main.Version` was empty for the released artifact;
GoReleaser now stamps the tag into `main.version` via `-ldflags`, making the
"binary embeds the same kit version it ships under" claim true. In-tree
`go build`/`go run` is unchanged (still falls back to build info). No behavior
change for game authors.

## 2.12.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.12.1",
"version": "2.12.2",
"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.12.1"
version = "2.12.2"
edition = "2021"
# #[unsafe(no_mangle)] (emitted by shellcade_game! so expansions survive
# edition-2024 game crates) stabilized in 1.82.
Expand Down
Loading