Skip to content

Commit db6e512

Browse files
committed
Version 0.6.0
Includes these changes: * Breaking change: Remove deprecated `SmallVecN` type aliases and `push_all_move` method. * Breaking change: Make `retain` pass `&mut T` to its predicate. * Add new methods `dedup`, `dedup_by`, and `dedup_by_key`. * Deprecate the `VecLike` trait in favor of standard library traits. * Optimize the `Clone` and `Deserialize` implementations to avoid unnecessary reallocation. * Optimize `extend_from_slice` and `insert_from_slice` to use `copy_nonoverlapping`. * Include the text of the Mozilla Public License in the source repo. * Improved documentation.
1 parent 6fbff19 commit db6e512

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[package]
22
name = "smallvec"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
55
license = "MPL-2.0"
66
repository = "https://github.com/servo/rust-smallvec"
77
description = "'Small vector' optimization: store up to a small number of items on the stack"
88
keywords = ["small", "vec", "vector", "stack", "no_std"]
9+
categories = ["data-structures"]
910
readme = "README.md"
1011
documentation = "http://doc.servo.org/smallvec/"
1112

0 commit comments

Comments
 (0)