From 1d8a3376a90e310d67e5ad5ac08720147c4df7f5 Mon Sep 17 00:00:00 2001 From: Harit Himanshu Date: Tue, 28 Jul 2026 16:00:20 +1200 Subject: [PATCH] chore: release v7.0.0 --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- crates/core/CHANGELOG.md | 16 ++++++++++++++++ crates/mcp/CHANGELOG.md | 10 ++++++++++ crates/mcp/Cargo.toml | 4 ++-- crates/workbook/CHANGELOG.md | 10 ++++++++++ crates/workbook/Cargo.toml | 2 +- 7 files changed, 46 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47248addc..53bf9df58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2188,7 +2188,7 @@ dependencies = [ [[package]] name = "truecalc-core" -version = "6.1.0" +version = "7.0.0" dependencies = [ "chrono", "chrono-tz", @@ -2204,7 +2204,7 @@ dependencies = [ [[package]] name = "truecalc-mcp" -version = "6.1.0" +version = "7.0.0" dependencies = [ "serde", "serde_json", @@ -2214,7 +2214,7 @@ dependencies = [ [[package]] name = "truecalc-wasm" -version = "6.1.0" +version = "7.0.0" dependencies = [ "serde", "serde-wasm-bindgen", @@ -2227,7 +2227,7 @@ dependencies = [ [[package]] name = "truecalc-wasm-workbook" -version = "6.1.0" +version = "7.0.0" dependencies = [ "serde", "serde_json", @@ -2240,7 +2240,7 @@ dependencies = [ [[package]] name = "truecalc-workbook" -version = "6.1.0" +version = "7.0.0" dependencies = [ "chrono", "chrono-tz", @@ -2815,7 +2815,7 @@ dependencies = [ [[package]] name = "workbook-budget" -version = "6.1.0" +version = "7.0.0" dependencies = [ "truecalc-workbook", ] diff --git a/Cargo.toml b/Cargo.toml index 75288d404..7691b8f28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/core", "crates/wasm", "crates/wasm-workbook", "crates/mcp", " resolver = "2" [workspace.package] -version = "6.1.0" +version = "7.0.0" edition = "2021" license = "MIT" authors = ["truecalc"] diff --git a/crates/core/CHANGELOG.md b/crates/core/CHANGELOG.md index 6211c876f..5fa816a07 100644 --- a/crates/core/CHANGELOG.md +++ b/crates/core/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.0](https://github.com/truecalc/core/compare/truecalc-core-v6.1.0...truecalc-core-v7.0.0) - 2026-07-28 + +### Added + +- *(google)* [**breaking**] SPARKLINE — parse and validate the in-cell chart ([#766](https://github.com/truecalc/core/pull/766)) + +### Fixed + +- *(google)* SPARKLINE conformance rows ([#766](https://github.com/truecalc/core/pull/766)) + +### Other + +- *(conformance)* enforce SPARKLINE's fixture coverage again +- Merge pull request #770 from truecalc/feat/766-sparkline-code +- *(conformance)* let SPARKLINE land before its fixture rows + ## [6.1.0](https://github.com/truecalc/core/compare/truecalc-core-v6.0.1...truecalc-core-v6.1.0) - 2026-07-25 ### Added diff --git a/crates/mcp/CHANGELOG.md b/crates/mcp/CHANGELOG.md index 65637fd4d..9379352af 100644 --- a/crates/mcp/CHANGELOG.md +++ b/crates/mcp/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.0](https://github.com/truecalc/core/compare/truecalc-mcp-v6.1.0...truecalc-mcp-v7.0.0) - 2026-07-28 + +### Added + +- *(google)* [**breaking**] SPARKLINE — parse and validate the in-cell chart ([#766](https://github.com/truecalc/core/pull/766)) + +### Other + +- Merge pull request #770 from truecalc/feat/766-sparkline-code + ## [6.0.1](https://github.com/truecalc/core/compare/truecalc-mcp-v6.0.0...truecalc-mcp-v6.0.1) - 2026-07-22 ### Other diff --git a/crates/mcp/Cargo.toml b/crates/mcp/Cargo.toml index a9ffa9a42..af1c33f18 100644 --- a/crates/mcp/Cargo.toml +++ b/crates/mcp/Cargo.toml @@ -14,7 +14,7 @@ name = "truecalc-mcp" path = "src/main.rs" [dependencies] -truecalc-core = { path = "../core", version = "6.1" } -truecalc-workbook = { path = "../workbook", version = "6.1" } +truecalc-core = { path = "../core", version = "7.0" } +truecalc-workbook = { path = "../workbook", version = "7.0" } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/crates/workbook/CHANGELOG.md b/crates/workbook/CHANGELOG.md index 2d58ee049..4fc7c0b5d 100644 --- a/crates/workbook/CHANGELOG.md +++ b/crates/workbook/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.0.0](https://github.com/truecalc/core/compare/truecalc-workbook-v6.1.0...truecalc-workbook-v7.0.0) - 2026-07-28 + +### Added + +- *(google)* [**breaking**] SPARKLINE — parse and validate the in-cell chart ([#766](https://github.com/truecalc/core/pull/766)) + +### Other + +- Merge pull request #770 from truecalc/feat/766-sparkline-code + ## [6.1.0](https://github.com/truecalc/core/compare/truecalc-workbook-v6.0.1...truecalc-workbook-v6.1.0) - 2026-07-25 ### Fixed diff --git a/crates/workbook/Cargo.toml b/crates/workbook/Cargo.toml index 83a371862..8faccf0a0 100644 --- a/crates/workbook/Cargo.toml +++ b/crates/workbook/Cargo.toml @@ -9,7 +9,7 @@ readme = "README.md" keywords = ["spreadsheet", "workbook", "formula", "excel", "sheets"] [dependencies] -truecalc-core = { path = "../core", version = "6.1", features = ["serde"] } +truecalc-core = { path = "../core", version = "7.0", features = ["serde"] } serde = { version = "1", features = ["derive"] } serde_json = { version = "1", features = ["float_roundtrip"] } ryu-js = "1"