Skip to content

Commit

Permalink
Prepare release.
Browse files Browse the repository at this point in the history
  • Loading branch information
n3vu0r committed Jan 7, 2022
1 parent d2991c9 commit 8fa5de1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trackball"
version = "0.7.0"
version = "0.8.0"
authors = ["Rouven Spreckels <[email protected]>"]
edition = "2021"
description = "Virtual Trackball Orbiting via the Exponential Map"
Expand Down Expand Up @@ -35,7 +35,7 @@ travis-ci = { repository = "qu1x/trackball" }

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

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

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

[`Orbit`]: https://doc.qu1x.dev/trackball/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.8.0 (2022-01-07)

* Bump `nalgebra` to latest version.

# Version 0.7.0 (2021-11-12)

* Bump `nalgebra` to latest version.
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.7.0',
version : '0.8.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.7.0
/// \version v0.8.0
/// \author Rouven Spreckels <[email protected]>
/// \copyright BSD-2-Clause-Patent
///
Expand Down

0 comments on commit 8fa5de1

Please sign in to comment.