Skip to content

Commit

Permalink
Prepare 0.29.1 (bitshifter#577)
Browse files Browse the repository at this point in the history
* Prepare for 0.29.1 release.
  • Loading branch information
bitshifter authored Oct 30, 2024
1 parent 224bf53 commit 2e4443e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 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.29.1] - 2024-10-30

### Added

Expand Down Expand Up @@ -1141,7 +1141,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.0...HEAD
[Unreleased]: https://github.com/bitshifter/glam-rs/compare/0.29.1...HEAD
[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
[0.27.0]: https://github.com/bitshifter/glam-rs/compare/0.26.0...0.27.0
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glam"
version = "0.29.0" # remember to update html_root_url
version = "0.29.1" # remember to update html_root_url
edition = "2021"
authors = ["Cameron Hart <[email protected]>"]
description = "A simple and fast 3D math library for games and graphics"
Expand Down Expand Up @@ -60,7 +60,7 @@ serde_json = "1.0"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
iai-callgrind = "0.12"
iai-callgrind = "0.14"

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ defined in `std`. For example:

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

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

[dependencies]
glam = { version = "0.29.0", default-features = false }
glam = { version = "0.29.1", 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 @@ -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.0")]
#![doc(html_root_url = "https://docs.rs/glam/0.29.1")]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(target_arch = "spirv", feature(repr_simd))]
#![deny(
Expand Down

0 comments on commit 2e4443e

Please sign in to comment.