Skip to content

Commit

Permalink
Finish 0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: Markus Mayer <[email protected]>
  • Loading branch information
sunsided committed Jun 22, 2024
1 parent 8714c6a commit 95e21ab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
All notable changes to this project will be documented in this file.
This project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased - Breaking Changes
## [0.6.0] - 2024-06-22

[0.6.0]: https://github.com/sunsided/minikalman-rs/releases/tag/v0.6.0

**Note:** This release contains breaking changes.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/minikalman", "xbuild-tests/stm32"]
default-members = ["crates/minikalman"]

[workspace.package]
version = "0.5.0"
version = "0.6.0"
description = "A microcontroller targeted Kalman filter implementation"
authors = ["Markus Mayer"]
repository = "https://github.com/sunsided/minikalman-rs"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const NUM_CONTROLS: usize = 2;
const NUM_OBSERVATIONS: usize = 1;

fn example() {
let builder = KalmanFilterBuilder::<NUM_STATES, f32>::default();
let builder = regular::builder::KalmanFilterBuilder::<NUM_STATES, f32>::default();
let mut filter = builder.build();
let mut control = builder.controls().build::<NUM_CONTROLS>();
let mut measurement = builder.observations().build::<NUM_OBSERVATIONS>();
Expand Down Expand Up @@ -95,7 +95,7 @@ const NUM_STATES: usize = 3;
const NUM_OBSERVATIONS: usize = 1;

fn example() {
let builder = KalmanFilterBuilder::<NUM_STATES, f32>::default();
let builder = extended::builder::KalmanFilterBuilder::<NUM_STATES, f32>::default();
let mut filter = builder.build();
let mut measurement = builder.observations().build::<NUM_OBSERVATIONS>();

Expand Down

0 comments on commit 95e21ab

Please sign in to comment.