From a0e78c1fb910ea1b0a87b7df8ae11bcb5c5de81b Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 12 Feb 2019 19:27:58 +0100 Subject: [PATCH] mention serde feature in the changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdbb469f..5b963387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,13 +12,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Added - All containers now implement `Clone` + - `spsc::Queue` now implements `Debug`, `Hash`, `PartialEq` and `Eq` + - `LinearMap` now implements `Debug`, `FromIterator`, `IntoIter`, `PartialEq`, `Eq` and `Default` + - `BinaryHeap` now implements `Debug` and `Default` + - `String` now implements `FromStr`, `Hash`, `From` and `Default` + - `Vec` now implements `Hash` and `Default` +- A "serde" Cargo feature that when enabled adds a `serde::Serialize` and + `serde::Deserialize` implementations to each collection. + ## [v0.4.1] - 2018-12-16 ### Changed