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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@

## [Unreleased]

## [0.21.1] - 2026-06-26

### Fixed
- **`rivet modify --set-release` (and any new-base-field insert) no longer
corrupts artifacts with a trailing block mapping (data loss).** `--set-release`
— shipped in v0.21.0 — spliced the new `release:` key *between* a trailing
`provenance:` block and its children, producing invalid YAML so the artifact
(and its file-mates) vanished on reload. Since every AI-stamped artifact has a
`provenance:` block, this hit most artifacts the command touched. The inserter
now skips a field's full extent, including nested block-mapping children, and
places the new field after the whole block. Found by dogfooding the v0.21.0
release field. (REQ-004)

## [0.21.0] - 2026-06-26

Theme: **Authoring & release ergonomics** — fix the dogfooding friction that
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ members = [
exclude = ["compose-witness"]

[workspace.package]
version = "0.21.0"
version = "0.21.1"
authors = ["PulseEngine <https://github.com/pulseengine>"]
edition = "2024"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion vscode-rivet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Rivet SDLC",
"description": "SDLC artifact traceability with live validation, hover info, and embedded dashboard",
"publisher": "pulseengine",
"version": "0.21.0",
"version": "0.21.1",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
Loading