From 1667fdfd56e2c67f95a0cb54488ea7a1598eefb0 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Sat, 19 Mar 2022 11:43:35 +0100 Subject: [PATCH] Prepare release. --- Cargo.toml | 8 ++++---- RELEASES.md | 5 +++++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a7d4cf0..363bce4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kiss3d-trackball" -version = "0.4.0" +version = "0.5.0" authors = ["Rouven Spreckels "] edition = "2021" description = "Virtual Trackball Camera Mode for Kiss3D" @@ -31,9 +31,9 @@ include = [ travis-ci = { repository = "qu1x/kiss3d-trackball" } [dependencies] -kiss3d = "0.32" -nalgebra = { version = "0.29", default-features = false, features = ["libm"] } -trackball = "0.7" +kiss3d = "0.34" +nalgebra = { version = "0.30", default-features = false, features = ["libm"] } +trackball = "0.8" [features] cc = ["trackball/cc"] diff --git a/RELEASES.md b/RELEASES.md index 4180421..a3beb78 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,8 @@ +# Version 0.5.0 (2022-03-19) + + * Bump `kiss3d`, `trackball`, and `nalgebra` to latest versions. + * Adhere to pedantic Clippy lints. + # Version 0.4.0 (2021-11-12) * Bump `kiss3d`, `trackball`, and `nalgebra` to latest versions.