diff --git a/CHANGELOG.md b/CHANGELOG.md index dfaf6533..ec7c8cfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.17.1] - 2021-06-29 + +### Added + +* Added `serde` support for `Affine2`, `DAffine2`, `Affine3A` and `DAffine3`. + ## [0.17.0] - 2021-06-26 ### Breaking changes @@ -627,7 +633,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.17.0...HEAD +[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.17.1...HEAD +[0.17.1]: https://github.com/bitshifter/glam-rs/compare/0.17.0...0.17.1 [0.17.0]: https://github.com/bitshifter/glam-rs/compare/0.16.0...0.17.0 [0.16.0]: https://github.com/bitshifter/glam-rs/compare/0.15.2...0.16.0 [0.15.2]: https://github.com/bitshifter/glam-rs/compare/0.15.1...0.15.2 diff --git a/Cargo.toml b/Cargo.toml index 5369b44a..4a15d585 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "glam" -version = "0.17.0" # remember to update html_root_url +version = "0.17.1" # remember to update html_root_url edition = "2018" authors = ["Cameron Hart "] description = "A simple and fast 3D math library for games and graphics" diff --git a/src/lib.rs b/src/lib.rs index 86b185a2..d5199223 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -232,7 +232,7 @@ and benchmarks. The minimum supported Rust version is `1.45.0`. */ -#![doc(html_root_url = "https://docs.rs/glam/0.17.0")] +#![doc(html_root_url = "https://docs.rs/glam/0.17.1")] #![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(target_arch = "spirv", feature(asm, register_attr, repr_simd))] // This would require renaming a lot of stuff, disabling for now.