From 3532e33ac24eb410b2049c9fa5264d348b6757cb Mon Sep 17 00:00:00 2001 From: Brandon W Maister Date: Fri, 29 Nov 2019 14:19:22 -0500 Subject: [PATCH] Add compatility notes about the new alloc feature in 0.4.10 Closes #364 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43f9b85..133a0a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,14 @@ Versions with only mechanical changes will be omitted from the following list. ## 0.4.10 +### Compatibility notes + +* Putting some functionality behind an `alloc` feature to improve no-std + support (in #341) means that if you were relying on chrono with + `no-default-features` *and* using any of the functions that require alloc + support (i.e. any of the string-generating functions like `to_rfc3339`) you + will need to add the `alloc` feature in your Cargo.toml. + ### Improvements * `DateTime::parse_from_str` is more than 2x faster in some cases. (@michalsrb