Skip to content

Commit 46ba20e

Browse files
committed
DOC: Update Readme for 0.5
1 parent babae41 commit 46ba20e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,25 @@ Recent Changes (arrayvec)
2424

2525
- 0.5.0 (not released yet)
2626

27+
- Use ``MaybeUninit`` (now unconditionally) in the implementation of
28+
``ArrayVec``
29+
- Use ``MaybeUninit`` (now unconditionally) in the implementation of
30+
``ArrayString``
31+
- The crate feature for serde serialization is now named ``serde``.
32+
- Updated the ``Array`` trait interface, and it is now easier to use for
33+
users outside the crate.
2734
- Add ``FromStr`` impl for ``ArrayString`` by @despawnerer
28-
- Use a union in the implementation of ``ArrayString`` (stable Rust),
29-
while this is only used for ``ArrayVec`` on nightly.
3035
- Add method ``try_extend_from_slice`` to ``ArrayVec``, which is always
3136
effecient by @Thomasdezeeuw.
3237
- Add method ``remaining_capacity`` by @Thomasdezeeuw
3338
- Improve performance of the ``extend`` method.
3439
- The index type of zero capacity vectors is now itself zero size, by
35-
@clarcharr
40+
@clarfon
3641
- Use ``drop_in_place`` for truncate and clear methods. This affects drop order
3742
and resume from panic during drop.
43+
- Use Rust 2018 edition for the implementation
44+
- Require Rust 1.36 or later, for the unconditional ``MaybeUninit``
45+
improvements.
3846

3947
- 0.4.11
4048

0 commit comments

Comments
 (0)