From 92c6e07493e5bd61d605e59430067edda7e7f3e7 Mon Sep 17 00:00:00 2001 From: Bruno Kirschner Date: Tue, 3 Sep 2019 13:12:17 +0200 Subject: [PATCH] [Documentation] Update changelog. --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed14b7c..deb868b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. ## Unreleased +## 0.2.1 (2019/09/03) + +- Add missing [`FromBencode`] implementation for [`BTreeMap`]. +- Introduce `std` as default enabled feature. + - Disabling this feature makes bendy `no_std` compatible. + - This currently requires that the target provides allocator support and + also supports `atomic_cas` as bendy contains a default [`ToBencode`] + implementation for `Arc`. +- Update minimal required rustc version to v1.36 (to use `extern crate alloc` + inside tests and examples). + ## 0.2.0 (2019/02/28) - Add new `try_into_*` utility methods on [`Object`]. - Introduce ... @@ -38,6 +49,7 @@ Initial release [`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html [`AsString`]: https://docs.rs/bendy/latest/bendy/encoding/struct.AsString.html +[`BTreeMap`]: https://doc.rust-lang.org/std/collections/struct.BTreeMap.html [`decoder`]: https://docs.rs/bendy/0.1.2/bendy/decoder/index.html [`decoding`]: https://docs.rs/bendy/latest/bendy/decoding/index.html [`DecodingError`]: https://docs.rs/bendy/latest/bendy/decoding/struct.Error.html