Skip to content

Commit d827651

Browse files
authored
Prepare 0.29.0 release. (#552)
1 parent 833ec1f commit d827651

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

CHANGELOG.md

+18-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog], and this project adheres to
66
[Semantic Versioning].
77

8-
## [Unreleased]
8+
## [0.29.0] - 2024-08-20
99

10-
## Breaking changes
10+
### Breaking changes
1111

1212
* `EulerRot` has been reimplemented and now has support for 24 different
1313
rotation order enum values.
1414

15+
### Fixed
16+
17+
* Reduced the dot threshold at which quaternion slerp uses lerp to improve
18+
accuracy.
19+
1520
### Added
1621

1722
* Added 3x3 matrix `from_mat4_minor()` and 2x2 matrix `from_mat3_minor()`
@@ -30,6 +35,15 @@ The format is based on [Keep a Changelog], and this project adheres to
3035
* Added `to_euler` methods to matrix types which extracts Euler angles from a
3136
rotation matrix for a given `EulerRot`.
3237

38+
* Added generic `map` method to vector types which applies a functor to all
39+
vector elements.
40+
41+
* Vector arithmetic ops are now implemented on references.
42+
43+
### Changed
44+
45+
* Vector and quaternion lerp now uses a precise lerp algorithm.
46+
3347
## [0.28.0] - 2024-06-10
3448

3549
### Breaking changes
@@ -1106,7 +1120,8 @@ The format is based on [Keep a Changelog], and this project adheres to
11061120

11071121
[Keep a Changelog]: https://keepachangelog.com/
11081122
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
1109-
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.28.0...HEAD
1123+
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.29.0...HEAD
1124+
[0.29.0]: https://github.com/bitshifter/glam-rs/compare/0.28.0...0.29.0
11101125
[0.28.0]: https://github.com/bitshifter/glam-rs/compare/0.27.0...0.28.0
11111126
[0.27.0]: https://github.com/bitshifter/glam-rs/compare/0.26.0...0.27.0
11121127
[0.26.0]: https://github.com/bitshifter/glam-rs/compare/0.25.0...0.26.0

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glam"
3-
version = "0.28.0" # remember to update html_root_url
3+
version = "0.29.0" # remember to update html_root_url
44
edition = "2021"
55
authors = ["Cameron Hart <[email protected]>"]
66
description = "A simple and fast 3D math library for games and graphics"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ defined in `std`. For example:
8080

8181
```toml
8282
[dependencies]
83-
glam = { version = "0.28", default-features = false, features = ["libm"] }
83+
glam = { version = "0.29.0", default-features = false, features = ["libm"] }
8484
```
8585

8686
To support both `std` and `no_std` builds in project, you can use the following
@@ -94,7 +94,7 @@ std = ["glam/std"]
9494
libm = ["glam/libm"]
9595

9696
[dependencies]
97-
glam = { version = "0.28", default-features = false }
97+
glam = { version = "0.29.0", default-features = false }
9898
```
9999

100100
### Optional features

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ and benchmarks.
252252
The minimum supported Rust version is `1.68.2`.
253253
254254
*/
255-
#![doc(html_root_url = "https://docs.rs/glam/0.28.0")]
255+
#![doc(html_root_url = "https://docs.rs/glam/0.29.0")]
256256
#![cfg_attr(not(feature = "std"), no_std)]
257257
#![cfg_attr(target_arch = "spirv", feature(repr_simd))]
258258
#![deny(

0 commit comments

Comments
 (0)