Skip to content

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed May 5, 2022
1 parent a269296 commit ea40b87
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trackball"
version = "0.8.1"
version = "0.9.0"
authors = ["Rouven Spreckels <[email protected]>"]
edition = "2021"
description = "Virtual Trackball Orbiting via the Exponential Map"
Expand Down Expand Up @@ -31,8 +31,8 @@ include = [
]

[dependencies]
heapless = { version = "0.7", default-features = false }
nalgebra = { version = "0.30", default-features = false, features = ["libm"] }
heapless = { version = "0.7.10", default-features = false }
nalgebra = { version = "0.31.0", default-features = false, features = ["libm-force"] }

[build-dependencies]
cc = { version = "1", optional = true }
cc = { version = "1.0.73", optional = true }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Identical [C11 implementation](c11) for [`Orbit`] operation handler behind `cc`

```toml
[dependencies]
trackball = { version = "0.8", features = ["cc"] }
trackball = { version = "0.9.0", features = ["cc"] }
```

[`Orbit`]: https://docs.rs/trackball/latest/trackball/struct.Orbit.html
Expand Down
4 changes: 4 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.9.0 (2022-05-05)

* Bump `nalgebra` to latest version.

# Version 0.8.1 (2022-03-22)

* Re-export `nalgebra`.
Expand Down
2 changes: 1 addition & 1 deletion c11/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('trackball', 'c',
version : '0.8.1',
version : '0.9.0',
license : 'BSD-2-Clause-Patent',
default_options : ['c_std=c11'])

Expand Down
2 changes: 1 addition & 1 deletion c11/src/trackball.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/// [S2CID]: https://en.wikipedia.org/wiki/S2CID_(identifier)
/// [44199608]: https://api.semanticscholar.org/CorpusID:44199608
///
/// \version v0.8.1
/// \version v0.9.0
/// \author Rouven Spreckels <[email protected]>
/// \copyright BSD-2-Clause-Patent
///
Expand Down

0 comments on commit ea40b87

Please sign in to comment.