From e9b68a85bea3060ac326a5435e24213c02bc33cf Mon Sep 17 00:00:00 2001 From: Cameron Hart Date: Tue, 5 Nov 2024 22:49:17 +1300 Subject: [PATCH] Prepare for 0.29.2 release. (#582) --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe004987..07608000 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [0.29.2] - 2024-11-05 + +### Fixed + +* Fix regression in vector `write_to_slice` methods where the destination had to + be the same size as the input, but it should support writing to a slice that + is the same size or larger than the input. + ## [0.29.1] - 2024-10-30 ### Added @@ -1141,7 +1149,8 @@ The format is based on [Keep a Changelog], and this project adheres to [Keep a Changelog]: https://keepachangelog.com/ [Semantic Versioning]: https://semver.org/spec/v2.0.0.html -[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.29.1...HEAD +[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.29.2...HEAD +[0.29.2]: https://github.com/bitshifter/glam-rs/compare/0.29.1...0.29.2 [0.29.1]: https://github.com/bitshifter/glam-rs/compare/0.29.0...0.29.1 [0.29.0]: https://github.com/bitshifter/glam-rs/compare/0.28.0...0.29.0 [0.28.0]: https://github.com/bitshifter/glam-rs/compare/0.27.0...0.28.0 diff --git a/Cargo.toml b/Cargo.toml index 56d5d89f..d3cb2ef0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glam" -version = "0.29.1" # remember to update html_root_url +version = "0.29.2" # remember to update html_root_url edition = "2021" authors = ["Cameron Hart "] description = "A simple and fast 3D math library for games and graphics" diff --git a/README.md b/README.md index ef22e64b..929f72eb 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ defined in `std`. For example: ```toml [dependencies] -glam = { version = "0.29.1", default-features = false, features = ["libm"] } +glam = { version = "0.29.2", default-features = false, features = ["libm"] } ``` To support both `std` and `no_std` builds in project, you can use the following @@ -98,7 +98,7 @@ std = ["glam/std"] libm = ["glam/libm"] [dependencies] -glam = { version = "0.29.1", default-features = false } +glam = { version = "0.29.2", default-features = false } ``` ### Optional features diff --git a/src/lib.rs b/src/lib.rs index 0b74a057..5d9cfb71 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -256,7 +256,7 @@ and benchmarks. The minimum supported Rust version is `1.68.2`. */ -#![doc(html_root_url = "https://docs.rs/glam/0.29.1")] +#![doc(html_root_url = "https://docs.rs/glam/0.29.2")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(target_arch = "spirv", feature(repr_simd))] #![deny(