From 4c5376774ce741ecdb44bc7203a2ae4f085acf30 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Wed, 9 Aug 2023 19:32:29 +0200 Subject: [PATCH] Prepare release. --- Cargo.toml | 2 +- README.md | 2 +- RELEASES.md | 5 +++++ c11/meson.build | 2 +- c11/src/trackball.h | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e66fb44..6ea1dd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "trackball" -version = "0.11.0" +version = "0.11.1" authors = ["Rouven Spreckels "] edition = "2021" description = "Virtual Trackball Orbiting via the Exponential Map" diff --git a/README.md b/README.md index 7085850..34eab4d 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,7 @@ Identical [C11 implementation](c11) for [`Orbit`] operation handler behind `cc` ```toml [dependencies] -trackball = { version = "0.11.0", features = ["cc"] } +trackball = { version = "0.11.1", features = ["cc"] } ``` [`Orbit`]: https://docs.rs/trackball/latest/trackball/struct.Orbit.html diff --git a/RELEASES.md b/RELEASES.md index e7aaaa5..0de1f77 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,8 @@ +# Version 0.11.1 (2023-08-09) + + * Fix scale boundary in `Scope::scale()` mode. + * Disable `rkyv` for `docsrs`. + # Version 0.11.0 (2023-08-08) * Refactor `Clamp` as trait realizing gliding along a boundary `Plane`. This diff --git a/c11/meson.build b/c11/meson.build index e196a25..f4ac2b7 100644 --- a/c11/meson.build +++ b/c11/meson.build @@ -1,5 +1,5 @@ project('trackball', 'c', - version : '0.11.0', + version : '0.11.1', license : 'MIT OR Apache-2.0', default_options : ['c_std=c11']) diff --git a/c11/src/trackball.h b/c11/src/trackball.h index fca332b..9b13a68 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.11.0 +/// \version v0.11.1 /// \author Rouven Spreckels /// \copyright MIT OR Apache-2.0 ///