From 8b26473ce6a974e8372fae7b6d8545c075b9bb9b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 4 Dec 2022 14:23:27 +0100 Subject: [PATCH 1/2] Add CHANGELOG entry for 0.13.3 Signed-off-by: Matthias Beyer --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index daadbc11..6174d2b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## 0.13.3 - 2022-12-04 + + - Backport of commit [d54986c54091e4620c199d3dfadde80b82958bb3] from [#362] for + using float_cmp for testing floats + - Backport of [#379] adding `Clone` trait derive to builder states + +[d54986c54091e4620c199d3dfadde80b82958bb3]: https://github.com/mehcode/config-rs/commit/d54986c54091e4620c199d3dfadde80b82958bb3 +[#362]: https://github.com/mehcode/config-rs/pull/362 +[#379]: https://github.com/mehcode/config-rs/pull/379 + ## 0.13.2 - 2022-08-02 - Backport of [#316] to be testing with temp_env. The backport was necessary to From dabf0c47ac458802a0b094431a066c8150773bc1 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 4 Dec 2022 14:34:18 +0100 Subject: [PATCH 2/2] Add note about MSRV update in 0.13.3 Signed-off-by: Matthias Beyer --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6174d2b2..917ec00d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## 0.13.3 - 2022-12-04 +Please note that we had to update the MSRV for this crate from 1.56.0 to 1.59.0 +for this patch release being possible, because a transitive dependency did +update its MSRV. + - Backport of commit [d54986c54091e4620c199d3dfadde80b82958bb3] from [#362] for using float_cmp for testing floats - Backport of [#379] adding `Clone` trait derive to builder states