Skip to content

Commit

Permalink
Merge pull request #41 from jmagnuson/prep-0.7.0
Browse files Browse the repository at this point in the history
Release v0.7.0
  • Loading branch information
jmagnuson authored Sep 13, 2024
2 parents ca30fcf + c5836d7 commit 0749823
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [0.7.0] - 2024-09-13

### Added
- Introduce `AhrsError` to enumerate errors.
- Add non-fallible function `Ahrs::update_gyro`, and fallback to on normalize failure.

### Changed
- Update `nalgebra` to v0.33.
- Update `simba` to v0.9.

## [0.6.0] - 2023-01-12

### Changed
Expand Down Expand Up @@ -41,7 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
- Add experimental feature `field_access` for access to filter parameters.
- Add `no_std` support.

[Unreleased]: https://github.com/jmagnuson/ahrs-rs/compare/v0.6.0...master
[Unreleased]: https://github.com/jmagnuson/ahrs-rs/compare/v0.7.0...master
[0.7.0]: https://github.com/jmagnuson/ahrs-rs/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/jmagnuson/ahrs-rs/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/jmagnuson/ahrs-rs/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/jmagnuson/ahrs-rs/compare/v0.3.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ahrs"
version = "0.6.0"
version = "0.7.0"
authors = ["Jon Magnuson <jon.magnuson@gmail.com>"]
description = "A Rust port of Madgwick's AHRS algorithm"
repository = "https://github.com/jmagnuson/ahrs-rs"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add ahrs-rs to your `Cargo.toml`:

```toml
[dependencies]
ahrs = "0.6"
ahrs = "0.7"
```

Here's a simple example that updates the filter state with arbitrary sensor data:
Expand Down

0 comments on commit 0749823

Please sign in to comment.