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
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
11 changes: 11 additions & 0 deletions cova-algebra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cova-algebra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
12 changes: 12 additions & 0 deletions cova-solver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
11 changes: 11 additions & 0 deletions cova-space/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cova-space/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions cova/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cova/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down