Skip to content

Commit

Permalink
Prepare 0.26.0 release. (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter authored Mar 18, 2024
1 parent dd9c3ef commit 121f9b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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].

## [Unreleased]
## [0.26.0] - 2024-03-18

### Breaking changes

Expand Down Expand Up @@ -1043,7 +1043,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.25.0...HEAD
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.26.0...HEAD
[0.26.0]: https://github.com/bitshifter/glam-rs/compare/0.25.0...0.26.0
[0.25.0]: https://github.com/bitshifter/glam-rs/compare/0.24.2...0.25.0
[0.24.2]: https://github.com/bitshifter/glam-rs/compare/0.24.1...0.24.2
[0.24.1]: https://github.com/bitshifter/glam-rs/compare/0.24.0...0.24.1
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glam"
version = "0.25.0" # remember to update html_root_url
version = "0.26.0" # remember to update html_root_url
edition = "2021"
authors = ["Cameron Hart <cameron.hart@gmail.com>"]
description = "A simple and fast 3D math library for games and graphics"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ defined in `std`. For example:

```toml
[dependencies]
glam = { version = "0.25", default-features = false, features = ["libm"] }
glam = { version = "0.26", default-features = false, features = ["libm"] }
```

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

[dependencies]
glam = { version = "0.25", default-features = false }
glam = { version = "0.26", default-features = false }
```

### Optional features
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ and benchmarks.
The minimum supported Rust version is `1.68.2`.
*/
#![doc(html_root_url = "https://docs.rs/glam/0.25.0")]
#![doc(html_root_url = "https://docs.rs/glam/0.26.0")]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(target_arch = "spirv", feature(repr_simd))]
#![deny(
Expand Down

0 comments on commit 121f9b7

Please sign in to comment.