Skip to content

Commit

Permalink
Bump to version 3.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Sep 14, 2023
1 parent 7dbb89c commit c610d5a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,18 @@ Released YYYY-MM-DD.

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

## 3.14.0

Released 2023-09-14.

### Added

* Added the `std` cargo feature, which enables implementations of `std` traits
for various things. Right now that is just `std::io::Write` for
`bumpalo::collections::Vec`, but could be more in the future.

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

## 3.13.0

Released 2023-05-22.
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.13.0"
version = "3.14.0"
exclude = ["/.github/*", "/benches", "/tests", "valgrind.supp", "bumpalo.png"]
rust-version = "1.60.0"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ First, enable the `allocator_api` feature in your `Cargo.toml`:

```toml
[dependencies]
bumpalo = { version = "3.9", features = ["allocator_api"] }
bumpalo = { version = "3", features = ["allocator_api"] }
```

Next, enable the `allocator_api` nightly Rust feature in your `src/lib.rs` or
Expand Down

0 comments on commit c610d5a

Please sign in to comment.