diff --git a/Cargo.toml b/Cargo.toml index b0ad6af..7d964f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trackball" -version = "0.7.0" +version = "0.8.0" authors = ["Rouven Spreckels "] edition = "2021" description = "Virtual Trackball Orbiting via the Exponential Map" @@ -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 } diff --git a/README.md b/README.md index 8d407ea..4905d32 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/RELEASES.md b/RELEASES.md index ff8deef..3bb5068 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -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. diff --git a/c11/meson.build b/c11/meson.build index 8cfbbbb..783c88a 100644 --- a/c11/meson.build +++ b/c11/meson.build @@ -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']) diff --git a/c11/src/trackball.h b/c11/src/trackball.h index d514adb..003960b 100644 --- a/c11/src/trackball.h +++ b/c11/src/trackball.h @@ -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 /// \copyright BSD-2-Clause-Patent ///