diff --git a/Cargo.lock b/Cargo.lock index d583008..811a868 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "cova" -version = "0.1.3" +version = "0.1.4" dependencies = [ "cova-algebra", "cova-solver", @@ -82,7 +82,7 @@ dependencies = [ [[package]] name = "cova-algebra" -version = "0.1.2" +version = "0.1.3" dependencies = [ "nalgebra", "num-traits", @@ -99,7 +99,7 @@ dependencies = [ [[package]] name = "cova-space" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cova-algebra", "itertools 0.14.0", diff --git a/Cargo.toml b/Cargo.toml index f58b395..92d947f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,9 @@ resolver = "2" [workspace.dependencies] # Local dependencies -cova-algebra = { path = "cova-algebra", version = "=0.1.2" } +cova-algebra = { path = "cova-algebra", version = "=0.1.3" } cova-solver = { path = "cova-solver", version = "=0.1.0" } -cova-space = { path = "cova-space", version = "=0.2.0" } +cova-space = { path = "cova-space", version = "=0.2.1" } # External dependencies itertools = { version = "0.14", default-features = false } diff --git a/cova-algebra/CHANGELOG.md b/cova-algebra/CHANGELOG.md index 2254b88..2524351 100644 --- a/cova-algebra/CHANGELOG.md +++ b/cova-algebra/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/harnesslabs/cova/compare/cova-algebra-v0.1.2...cova-algebra-v0.1.3) - 2025-06-16 + +### Added +- `cova-solver` + `nalgebra` backend ([#84](https://github.com/harnesslabs/cova/pull/84)) + +### Fixed +- LaTeX in docs ([#76](https://github.com/harnesslabs/cova/pull/76)) + +### Other +- *(`algebra`)* matrix implementation ([#80](https://github.com/harnesslabs/cova/pull/80)) + ## [0.1.2](https://github.com/harnesslabs/cova/compare/cova-algebra-v0.1.1...cova-algebra-v0.1.2) - 2025-05-24 ### Fixed diff --git a/cova-algebra/Cargo.toml b/cova-algebra/Cargo.toml index a4201ac..fe25934 100644 --- a/cova-algebra/Cargo.toml +++ b/cova-algebra/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["mathematics", "algebra"] license = "AGPL-3.0" readme = "README.md" repository = "https://github.com/harnesslabs/cova" -version = "0.1.2" +version = "0.1.3" [dependencies] nalgebra = { workspace = true, features = ["std"] } diff --git a/cova-solver/CHANGELOG.md b/cova-solver/CHANGELOG.md new file mode 100644 index 0000000..4232335 --- /dev/null +++ b/cova-solver/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +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). + +## [Unreleased] + +## [0.1.0](https://github.com/harnesslabs/cova/releases/tag/cova-solver-v0.1.0) - 2025-06-16 + +### Added +- `cova-solver` + `nalgebra` backend ([#84](https://github.com/harnesslabs/cova/pull/84)) diff --git a/cova-space/CHANGELOG.md b/cova-space/CHANGELOG.md index bb57531..bbe0c62 100644 --- a/cova-space/CHANGELOG.md +++ b/cova-space/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/harnesslabs/cova/compare/cova-space-v0.2.0...cova-space-v0.2.1) - 2025-06-16 + +### Added +- `cova-solver` + `nalgebra` backend ([#84](https://github.com/harnesslabs/cova/pull/84)) + +### Fixed +- LaTeX in docs ([#76](https://github.com/harnesslabs/cova/pull/76)) + +### Other +- *(`algebra`)* matrix implementation ([#80](https://github.com/harnesslabs/cova/pull/80)) + ## [0.1.2](https://github.com/harnesslabs/cova/compare/cova-space-v0.1.1...cova-space-v0.1.2) - 2025-05-24 ### Fixed diff --git a/cova-space/Cargo.toml b/cova-space/Cargo.toml index 40565fb..754c70a 100644 --- a/cova-space/Cargo.toml +++ b/cova-space/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["mathematics", "topology", "geometry"] license = "AGPL-3.0" readme = "README.md" repository = "https://github.com/harnesslabs/cova" -version = "0.2.0" +version = "0.2.1" [dependencies] # Local diff --git a/cova/CHANGELOG.md b/cova/CHANGELOG.md index 29ffc23..a8871da 100644 --- a/cova/CHANGELOG.md +++ b/cova/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4](https://github.com/harnesslabs/cova/compare/cova-v0.1.3...cova-v0.1.4) - 2025-06-16 + +### Added +- `cova-solver` + `nalgebra` backend ([#84](https://github.com/harnesslabs/cova/pull/84)) + +### Fixed +- LaTeX in docs ([#76](https://github.com/harnesslabs/cova/pull/76)) + ## [0.1.3](https://github.com/harnesslabs/cova/compare/cova-v0.1.2...cova-v0.1.3) - 2025-05-25 ### Other diff --git a/cova/Cargo.toml b/cova/Cargo.toml index d865afe..3e854b9 100644 --- a/cova/Cargo.toml +++ b/cova/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["mathematics", "topology", "geometry"] license = "AGPL-3.0" readme = "README.md" repository = "https://github.com/harnesslabs/cova" -version = "0.1.3" +version = "0.1.4" [dependencies] cova-algebra = { workspace = true }