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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.0"
".": "0.3.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.3.1](https://github.com/rpl-cmu/fact-rs/compare/v0.3.0...v0.3.1) (2026-05-22)


### Features

* Require Send for Graph and Factor ([#47](https://github.com/rpl-cmu/fact-rs/issues/47)) ([befb5b9](https://github.com/rpl-cmu/fact-rs/commit/befb5b954627b6fa719d05aace191aa6c680a7ab))

## [0.3.0](https://github.com/rpl-cmu/fact-rs/compare/v0.2.0...v0.3.0) (2026-03-20)


Expand Down
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
@@ -1,6 +1,6 @@
[package]
name = "factrs"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
license = "MIT"
description = "Factor graph optimization for robotics"
Expand Down Expand Up @@ -43,7 +43,7 @@ downcast-rs = "2.0.1"
log = "0.4.22"
pad-adapter = "0.1.1"
dyn-clone = "1.0.17"
factrs-proc = { version = "0.3.0", path = "./factrs-proc" }
factrs-proc = { version = "0.3.1", path = "./factrs-proc" }

# numerical
faer.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions factrs-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "factrs-bench"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[dependencies]
faer.workspace = true
nalgebra.workspace = true
factrs = { version = "0.3.0", path = ".." }
factrs = { version = "0.3.1", path = ".." }
pretty_env_logger = "0.5.0"
rayon = "1.10.0"

Expand Down
2 changes: 1 addition & 1 deletion factrs-proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "factrs-proc"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
license = "MIT"
description = "Proc-macros for factrs"
Expand Down
Loading