Skip to content

Commit

Permalink
Bump to version 3.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Apr 8, 2024
1 parent d746a56 commit 4eeab88
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ Released YYYY-MM-DD.

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

## 3.16.0

Released 2024-04-08.

### Added

* Added an optional, off-by-default dependency on the `serde` crate. Enabling
this dependency allows you to serialize Bumpalo's collection and box
types. Deserialization is not implemented, due to constraints of the
deserialization trait.

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

## 3.15.4

Released 2024-03-07.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
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.4"
version = "3.16.0"
exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"]
rust-version = "1.73.0"

Expand Down
2 changes: 1 addition & 1 deletion tests/all/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};

macro_rules! compare_std_vec {
(in $bump:ident; $($x:expr),+) => {{
let mut vec = vec![in &$bump; $($x),+];
let vec = vec![in &$bump; $($x),+];
let std_vec = std::vec![$($x),+];
(vec, std_vec)
}}
Expand Down

0 comments on commit 4eeab88

Please sign in to comment.