diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 888ddb4..0b3d7c8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "packages/flow-schema": "0.0.9", - "crates/wavekat-flow": "0.0.6" + "packages/flow-schema": "0.0.10", + "crates/wavekat-flow": "0.0.7" } diff --git a/Cargo.lock b/Cargo.lock index 913bef0..9347886 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1551,7 +1551,7 @@ dependencies = [ [[package]] name = "wavekat-flow" -version = "0.0.6" +version = "0.0.7" dependencies = [ "anyhow", "async-trait", diff --git a/crates/wavekat-flow/CHANGELOG.md b/crates/wavekat-flow/CHANGELOG.md index 6084b6a..66ff55f 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.7](https://github.com/wavekat/wavekat-flow/compare/wavekat-flow-v0.0.6...wavekat-flow-v0.0.7) (2026-08-09) + + +### Features + +* derive and set a document's schema_version ([#41](https://github.com/wavekat/wavekat-flow/issues/41)) ([756c209](https://github.com/wavekat/wavekat-flow/commit/756c209e97553ce929787437d802330a175f65f3)) + ## [0.0.6](https://github.com/wavekat/wavekat-flow/compare/wavekat-flow-v0.0.5...wavekat-flow-v0.0.6) (2026-08-08) diff --git a/crates/wavekat-flow/Cargo.toml b/crates/wavekat-flow/Cargo.toml index 32d5290..7c48830 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.6" +version = "0.0.7" 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 3310585..9f1d7f9 100644 --- a/packages/flow-schema/CHANGELOG.md +++ b/packages/flow-schema/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.10](https://github.com/wavekat/wavekat-flow/compare/flow-schema-v0.0.9...flow-schema-v0.0.10) (2026-08-09) + + +### Features + +* derive and set a document's schema_version ([#41](https://github.com/wavekat/wavekat-flow/issues/41)) ([756c209](https://github.com/wavekat/wavekat-flow/commit/756c209e97553ce929787437d802330a175f65f3)) + ## [0.0.9](https://github.com/wavekat/wavekat-flow/compare/flow-schema-v0.0.8...flow-schema-v0.0.9) (2026-08-08) diff --git a/packages/flow-schema/package.json b/packages/flow-schema/package.json index 8a445c2..755a67c 100644 --- a/packages/flow-schema/package.json +++ b/packages/flow-schema/package.json @@ -1,6 +1,6 @@ { "name": "@wavekat/flow-schema", - "version": "0.0.9", + "version": "0.0.10", "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",