Skip to content

Commit

Permalink
Bump to version 2.0.0 Release Candidate 1
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen committed Nov 26, 2019
1 parent c96af29 commit 990bf7a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,7 @@ language: rust

matrix:
include:
- rust: 1.32.0
- rust: 1.36.0
- rust: stable
- rust: beta
- rust: nightly
Expand Down
20 changes: 19 additions & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,7 @@ Released YYYY/MM/DD.

### Added

* Added `alloc_str` to `Arena<u8>`, to be able to allocate string slices.
* TODO (or remove section if none)

### Changed

Expand All @@ -28,6 +28,24 @@ Released YYYY/MM/DD.

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

## 2.0.0-rc1

Released 2019/11/26.

Unless any issues are discovered or raised, we will release version 2.0.0 soon.

### Added

* Added `alloc_str` to `Arena<u8>`, to be able to allocate string slices.

### Changed

* The minimum supported rust version is now 1.36.0.
* `alloc_uninitialized` returns `&mut [MaybeUninit<T>]` instead of `*mut [T]`,
which is less prone to undefined behavior.

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

## 1.7.0

Released 2019/10/31. *Spooky!*
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "typed-arena"
version = "1.7.0"
version = "2.0.0-rc1"
authors = ["Simon Sapin <simon.sapin@exyr.org>", "Nick Fitzgerald <fitzgen@gmail.com>"]
license = "MIT"
description = "The arena, a fast but limited type of allocator"
Expand All @@ -19,7 +19,7 @@ default = ["std"]
std = []

[dev-dependencies]
criterion = "0.3"
criterion = "0.3.0"

[[bench]]
name = "benches"
Expand Down

0 comments on commit 990bf7a

Please sign in to comment.