Skip to content

Commit

Permalink
Bump to version 3.17.0 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen authored Jan 28, 2025
1 parent 0713b5f commit b3707e8
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,32 @@ Released YYYY-MM-DD.

--------------------------------------------------------------------------------

## 3.17.0

Released 2025-01-28.

### Added

* Added a bunch of `try_` allocation methods for slices and `str`:
* `try_alloc_slice_fill_default`
* `try_alloc_slice_fill_iter`
* `try_alloc_slice_fill_clone`
* `try_alloc_slice_fill_copy`
* `try_alloc_slice_fill_with`
* `try_alloc_str`
* `try_alloc_slice_clone`
* `try_alloc_slice_copy`

### Changed

* Minimum supported Rust version reduced to 1.71.1

### Fixed

* Fixed a stacked-borrows MIRI bug in `dealloc`

--------------------------------------------------------------------------------

## 3.16.0

Released 2024-04-08.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ categories = ["memory-management", "rust-patterns", "no-std"]
description = "A fast bump allocation arena for Rust."
documentation = "https://docs.rs/bumpalo"
edition = "2021"
exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"]
license = "MIT OR Apache-2.0"
name = "bumpalo"
readme = "README.md"
repository = "https://github.com/fitzgen/bumpalo"
version = "3.16.0"
exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"]
rust-version = "1.71.1"
version = "3.17.0"

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit b3707e8

Please sign in to comment.