Skip to content

Commit 3692d07

Browse files
authored
Prepare 0.28.0 release. (#526)
1 parent 06c8add commit 3692d07

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.28.0] - 2024-06-10
99

1010
### Breaking changes
1111

@@ -1081,7 +1081,8 @@ The format is based on [Keep a Changelog], and this project adheres to
10811081

10821082
[Keep a Changelog]: https://keepachangelog.com/
10831083
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
1084-
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.27.0...HEAD
1084+
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.28.0...HEAD
1085+
[0.28.0]: https://github.com/bitshifter/glam-rs/compare/0.27.0...0.28.0
10851086
[0.27.0]: https://github.com/bitshifter/glam-rs/compare/0.26.0...0.27.0
10861087
[0.26.0]: https://github.com/bitshifter/glam-rs/compare/0.25.0...0.26.0
10871088
[0.25.0]: https://github.com/bitshifter/glam-rs/compare/0.24.2...0.25.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glam"
3-
version = "0.27.0" # remember to update html_root_url
3+
version = "0.28.0" # remember to update html_root_url
44
edition = "2021"
55
authors = ["Cameron Hart <cameron.hart@gmail.com>"]
66
description = "A simple and fast 3D math library for games and graphics"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ defined in `std`. For example:
7878

7979
```toml
8080
[dependencies]
81-
glam = { version = "0.27", default-features = false, features = ["libm"] }
81+
glam = { version = "0.28", default-features = false, features = ["libm"] }
8282
```
8383

8484
To support both `std` and `no_std` builds in project, you can use the following
@@ -92,7 +92,7 @@ std = ["glam/std"]
9292
libm = ["glam/libm"]
9393

9494
[dependencies]
95-
glam = { version = "0.27", default-features = false }
95+
glam = { version = "0.28", default-features = false }
9696
```
9797

9898
### Optional features

src/lib.rs

Lines changed: 1 addition & 1 deletion
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.27.0")]
255+
#![doc(html_root_url = "https://docs.rs/glam/0.28.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)