diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7955715..f968353 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/flow-schema": "0.0.4", - "crates/wavekat-flow": "0.0.2" + "packages/flow-schema": "0.0.5", + "crates/wavekat-flow": "0.0.3" } diff --git a/Cargo.lock b/Cargo.lock index 9cb3b5e..dee4c1d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "wavekat-flow" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "async-trait", diff --git a/crates/wavekat-flow/CHANGELOG.md b/crates/wavekat-flow/CHANGELOG.md index afe854d..0a2e6fa 100644 --- a/crates/wavekat-flow/CHANGELOG.md +++ b/crates/wavekat-flow/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.3](https://github.com/wavekat/wavekat-flow/compare/wavekat-flow-v0.0.2...wavekat-flow-v0.0.3) (2026-07-19) + + +### Bug Fixes + +* name Prompt variants via schema titles ([#28](https://github.com/wavekat/wavekat-flow/issues/28)) ([4318260](https://github.com/wavekat/wavekat-flow/commit/4318260faebffad8460503f4789951002dcd4863)) + ## [Unreleased] ## [0.0.2](https://github.com/wavekat/wavekat-flow/compare/wavekat-flow-v0.0.1...wavekat-flow-v0.0.2) - 2026-07-19 diff --git a/crates/wavekat-flow/Cargo.toml b/crates/wavekat-flow/Cargo.toml index 4f47d04..c96cea2 100644 --- a/crates/wavekat-flow/Cargo.toml +++ b/crates/wavekat-flow/Cargo.toml @@ -2,7 +2,7 @@ name = "wavekat-flow" # Literal (not workspace-inherited) so release-please's Cargo updater can # bump it — the cargo-workspace plugin doesn't rewrite [workspace.package]. -version = "0.0.2" +version = "0.0.3" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/packages/flow-schema/CHANGELOG.md b/packages/flow-schema/CHANGELOG.md index 8138689..cac9a60 100644 --- a/packages/flow-schema/CHANGELOG.md +++ b/packages/flow-schema/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.5](https://github.com/wavekat/wavekat-flow/compare/flow-schema-v0.0.4...flow-schema-v0.0.5) (2026-07-19) + + +### Bug Fixes + +* name Prompt variants via schema titles ([#28](https://github.com/wavekat/wavekat-flow/issues/28)) ([4318260](https://github.com/wavekat/wavekat-flow/commit/4318260faebffad8460503f4789951002dcd4863)) + ## [0.0.4](https://github.com/wavekat/wavekat-flow/compare/flow-schema-v0.0.3...flow-schema-v0.0.4) (2026-07-19) diff --git a/packages/flow-schema/package.json b/packages/flow-schema/package.json index cb8b5e5..5743340 100644 --- a/packages/flow-schema/package.json +++ b/packages/flow-schema/package.json @@ -1,6 +1,6 @@ { "name": "@wavekat/flow-schema", - "version": "0.0.4", + "version": "0.0.5", "description": "TypeScript model, JSON Schema, and structural validator for the WaveKat call-flow (\"Receptionist\") format. Types are generated from the normative schema at ../../schema/flow.v1.schema.json.", "type": "module", "license": "Apache-2.0",