From bb660a398d3af301b76c55b1cbc099c92f65688b Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 15 Feb 2024 12:46:38 -0800 Subject: [PATCH] Bump to version 3.15.0 --- CHANGELOG.md | 21 ++++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2873a2..18c827d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Released YYYY-MM-DD. ### Changed -* The minimum supported Rust version (MSRV) is now 1.65.0. +* TODO (or remove section if none) ### Deprecated @@ -28,6 +28,25 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 3.15.0 + +Released 2024-02-15. + +### Changed + +* The minimum supported Rust version (MSRV) is now 1.73.0. +* `bumpalo::collections::String::push_str` and + `bumpalo::collections::String::from_str_in` received significant performance + improvements. +* Allocator trait methods are now marked `#[inline]`, increasing performance for + some callers. + +### Fixed + +* Fixed an edge-case bug in the `Allocator::shrink` method. + +-------------------------------------------------------------------------------- + ## 3.14.0 Released 2023-09-14. diff --git a/Cargo.toml b/Cargo.toml index 24ff782..500d849 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0" name = "bumpalo" readme = "README.md" repository = "https://github.com/fitzgen/bumpalo" -version = "3.14.0" +version = "3.15.0" exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"] rust-version = "1.65.0"