From 0034bc69968840a104df299cad71092a5e76ed11 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 14 Nov 2024 00:01:50 +0000 Subject: [PATCH] Release v0.15.2 --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cdcc070ab..ea702c384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] +## [v0.15.2] - 2024-11-14 + +### Added + +- Marked `const fn` constructors as `rustc_const_stable_indirect` when built as + part of the standard library. (#586) + ## [v0.15.1] - 2024-11-03 This release removes the `borsh` feature introduced in 0.15.0 because it was @@ -531,7 +538,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat - Initial release -[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.15.1...HEAD +[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.15.2...HEAD +[v0.15.2]: https://github.com/rust-lang/hashbrown/compare/v0.15.1...v0.15.2 [v0.15.1]: https://github.com/rust-lang/hashbrown/compare/v0.15.0...v0.15.1 [v0.15.0]: https://github.com/rust-lang/hashbrown/compare/v0.14.5...v0.15.0 [v0.14.5]: https://github.com/rust-lang/hashbrown/compare/v0.14.4...v0.14.5 diff --git a/Cargo.toml b/Cargo.toml index 572f5f9a5..7bc11679b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashbrown" -version = "0.15.1" +version = "0.15.2" authors = ["Amanieu d'Antras "] description = "A Rust port of Google's SwissTable hash map" license = "MIT OR Apache-2.0"