Skip to content
Open
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
12 changes: 6 additions & 6 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 @@ -3,7 +3,7 @@ members = ["crates/core", "crates/wasm", "crates/wasm-workbook", "crates/python"
resolver = "2"

[workspace.package]
version = "9.0.1"
version = "9.1.0"
edition = "2021"
license = "MIT"
authors = ["truecalc"]
Expand Down
15 changes: 15 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.1.0](https://github.com/truecalc/core/compare/truecalc-core-v9.0.1...truecalc-core-v9.1.0) - 2026-09-01

### Added

- *(core)* rewrite formula references across a row/column insert or delete

### Fixed

- *(core)* address review of the grid-edit reference rewrite
- *(core)* handle backwards-written ranges in the grid-edit rewrite

### Other

- *(core)* rustfmt the new grid_edit module and its tests

## [9.0.1](https://github.com/truecalc/core/compare/truecalc-core-v9.0.0...truecalc-core-v9.0.1) - 2026-08-29

### Fixed
Expand Down
18 changes: 18 additions & 0 deletions crates/workbook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.1.0](https://github.com/truecalc/core/compare/truecalc-workbook-v9.0.1...truecalc-workbook-v9.1.0) - 2026-09-01

### Added

- *(wasm-workbook)* bind remaining Workbook methods to JsWorkbook
- *(workbook)* the workbook owns the dangling-ref invariant

### Fixed

- *(workbook)* refuse a rename that lands a dangling table on foreign headers
- *(workbook)* skip the table-overlap check on a pure case change
- *(workbook)* stop a rename creating the very defect it closes

### Other

- Merge pull request #967 from truecalc/feat/965-recalc-work-assertions-chain-bench
- *(workbook)* assert recalc work, and add the missing chain fixture

## [9.0.1](https://github.com/truecalc/core/compare/truecalc-workbook-v9.0.0...truecalc-workbook-v9.0.1) - 2026-08-29

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/workbook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
keywords = ["spreadsheet", "workbook", "formula", "excel", "sheets"]

[dependencies]
truecalc-core = { path = "../core", version = "9.0", features = ["serde"] }
truecalc-core = { path = "../core", version = "9.1", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["float_roundtrip"] }
ryu-js = "1"
Expand Down
Loading