Skip to content

Commit

Permalink
Bump to version 3.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Feb 21, 2024
1 parent 54c88f0 commit 2ffdfb3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -28,6 +28,20 @@ Released YYYY-MM-DD.

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

## 3.15.2

Released 2024-02-21.

### Added

* Add a `bumpalo::collections::Vec::extend_from_slice_copy` method. This doesn't
exist on the standard library's `Vec` but they have access to specialization,
so their regular `extend_from_slice` has a specialization for `Copy`
types. Using this new method for `Copy` types is a ~80x performance
improvement over the plain `extend_from_slice` method.

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

## 3.15.1

Released 2024-02-20.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -8,7 +8,7 @@ license = "MIT OR Apache-2.0"
name = "bumpalo"
readme = "README.md"
repository = "https://github.com/fitzgen/bumpalo"
version = "3.15.1"
version = "3.15.2"
exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"]
rust-version = "1.73.0"

Expand Down

0 comments on commit 2ffdfb3

Please sign in to comment.