mention serde feature in the changelog

This commit is contained in:
Jorge Aparicio 2019-02-12 19:27:58 +01:00
parent 9a9cbd3918
commit a0e78c1fb9

View File

@ -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<uxx>` 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