From 40c764f53a8518fa9acbce94f2dbd770951104c7 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Wed, 21 Feb 2024 20:16:08 +0100 Subject: [PATCH] Prepare release. --- Cargo.toml | 4 ++-- README.md | 4 ++-- RELEASES.md | 5 +++++ c11/meson.build | 2 +- c11/src/trackball.h | 4 ++-- 5 files changed, 12 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 25767f4..591beaa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ heapless = { version = "0.8.0", default-features = false } nalgebra = { version = "0.32.4", default-features = false, features = ["libm-force"] } simba = { version = "0.8.1", default-features = false, features = ["libm"] } approx = { version = "0.5.1", default-features = false } -serde = { version = "1.0.196", default-features = false, features = ["derive"], optional = true } +serde = { version = "1.0.197", default-features = false, features = ["derive"], optional = true } rkyv = { version = "0.7.44", default-features = false, optional = true } [features] @@ -49,4 +49,4 @@ serde = ["dep:serde", "nalgebra/serde-serialize-no-std", "simba/serde_serialize" rkyv = ["dep:rkyv", "nalgebra/rkyv-serialize-no-std", "simba/rkyv-serialize"] [build-dependencies] -cc = { version = "1.0.83", optional = true } +cc = { version = "1.0.86", optional = true } diff --git a/README.md b/README.md index f07dc3a..e785376 100644 --- a/README.md +++ b/README.md @@ -109,14 +109,14 @@ Identical [C11 implementation](c11) for [`Orbit`] operation handler behind `cc` ```toml [dependencies] -trackball = { version = "0.11.1", features = ["cc"] } +trackball = { version = "0.12.0", features = ["cc"] } ``` [`Orbit`]: https://docs.rs/trackball/latest/trackball/struct.Orbit.html ## License -Copyright © 2021-2023 Rouven Spreckels +Copyright © 2021-2024 Rouven Spreckels This project is licensed under either of diff --git a/RELEASES.md b/RELEASES.md index cb57cd1..e742886 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,8 @@ +# Version 0.12.0 (2024-02-21) + + * Support latest `glam`. + * Implement `Delta::Track`, changing behavior of `Frame::set_target`. + # Version 0.11.2 (2023-08-19) * Make some types `Copy`. diff --git a/c11/meson.build b/c11/meson.build index f4ac2b7..51c01cd 100644 --- a/c11/meson.build +++ b/c11/meson.build @@ -1,5 +1,5 @@ project('trackball', 'c', - version : '0.11.1', + version : '0.12.0', license : 'MIT OR Apache-2.0', default_options : ['c_std=c11']) diff --git a/c11/src/trackball.h b/c11/src/trackball.h index 9b13a68..145b644 100644 --- a/c11/src/trackball.h +++ b/c11/src/trackball.h @@ -1,4 +1,4 @@ -// Copyright © 2021-2023 Rouven Spreckels +// Copyright © 2021-2024 Rouven Spreckels // SPDX-License-Identifier: MIT OR Apache-2.0 /// \file /// \brief API header file. @@ -18,7 +18,7 @@ /// [S2CID]: https://en.wikipedia.org/wiki/S2CID_(identifier) /// [44199608]: https://api.semanticscholar.org/CorpusID:44199608 /// -/// \version v0.11.1 +/// \version v0.12.0 /// \author Rouven Spreckels /// \copyright MIT OR Apache-2.0 ///