summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-11-22 07:58:21 +0100
committerGitHub <noreply@github.com>2023-11-22 07:58:21 +0100
commita38387955622e6b8d48a49352629cd329ad6dc29 (patch)
tree5da4f4b38f1afe1d663fe38204b037aaf280a1b8
parentdb754f5274d723422f9ff86adba898ff0d2d6517 (diff)
parent750c8d33b22402e705464db9f80a3a32ed5e9e23 (diff)
Merge pull request #500 from matthiasbeyer/release-0.13/changelogv0.13.4release-0.13.x
Release 0.13.4 changelog
-rw-r--r--CHANGELOG.md20
-rw-r--r--Cargo.toml2
2 files changed, 21 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 917ec00..eb8c5eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
+## 0.13.4 - 2023-11-22
+
+- Relaxed the MSRV to 1.56.0 for this release. Please have a look at
+ [#495] for details
+- Backport of the following patches from PR [#465]:
+ - [aa63d2dbbcc13fbdfa846185d54d87d7822e2509]
+ - [831102fe0ffd5c7fe475efe5f379c710d201f165]
+ - [147e6c7275b65b6a74eaec9c05b317673e61084e]
+ - [ed6a3c9882fbc43eae9313ab1801610e49af863f]
+ to fix nested arrays (see
+ [the related bug report](https://github.com/mehcode/config-rs/issues/464)
+ for details).
+
+[#495]: https://github.com/mehcode/config-rs/pull/495
+[#465]: https://github.com/mehcode/config-rs/pull/465
+[aa63d2dbbcc13fbdfa846185d54d87d7822e2509]: https://github.com/mehcode/config-rs/commit/aa63d2dbbcc13fbdfa846185d54d87d7822e2509
+[831102fe0ffd5c7fe475efe5f379c710d201f165]: https://github.com/mehcode/config-rs/commit/831102fe0ffd5c7fe475efe5f379c710d201f165
+[147e6c7275b65b6a74eaec9c05b317673e61084e]: https://github.com/mehcode/config-rs/commit/147e6c7275b65b6a74eaec9c05b317673e61084e
+[ed6a3c9882fbc43eae9313ab1801610e49af863f]: https://github.com/mehcode/config-rs/commit/ed6a3c9882fbc43eae9313ab1801610e49af863f
+
## 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
diff --git a/Cargo.toml b/Cargo.toml
index 2c9daaf..48d07fc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "config"
-version = "0.13.3"
+version = "0.13.4"
description = "Layered configuration system for Rust applications."
homepage = "https://github.com/mehcode/config-rs"
repository = "https://github.com/mehcode/config-rs"