Skip to content

Commit 680b10b

Browse files
author
bors-servo
authored
Auto merge of #78 - mbrubeck:bump, r=jdm
Version 0.6.0 Includes these changes since the last release: * Breaking change: Remove deprecated `SmallVecN` type aliases and `push_all_move` method (#77) * Breaking change: Make `retain` pass `&mut T` to its predicate (#61) * Add new methods `dedup`, `dedup_by`, and `dedup_by_key` (#72) * Deprecate the `VecLike` trait in favor of standard library traits (#74) * Optimize the `Clone` and `Deserialize` implementations to avoid unnecessary reallocation (#71) * Optimize `extend_from_slice` and `insert_from_slice` to use `copy_nonoverlapping` (#76) * Include the text of the Mozilla Public License in the source repo (#69) * Improved documentation (#75) <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/rust-smallvec/78) <!-- Reviewable:end -->
2 parents 247e244 + db6e512 commit 680b10b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-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

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ rust-smallvec
33

44
[Documentation](http://docs.rs/smallvec/)
55

6+
[Release notes](https://github.com/servo/rust-smallvec/releases)
7+
68
"Small vector" optimization for Rust: store up to a small number of items on the stack

0 commit comments

Comments
 (0)