diff --git a/Cargo.lock b/Cargo.lock index d57283c..460cff0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -202,7 +202,7 @@ dependencies = [ [[package]] name = "confik" -version = "0.11.7" +version = "0.11.8" dependencies = [ "assert_matches", "bigdecimal", diff --git a/confik/CHANGELOG.md b/confik/CHANGELOG.md index 8ad413d..33403af 100644 --- a/confik/CHANGELOG.md +++ b/confik/CHANGELOG.md @@ -2,8 +2,10 @@ ## Unreleased -- Minimum supported Rust version (MSRV) is now 1.67 due to `toml_edit` dependency. +## 0.11.8 + - Implement `Configuration` for [`chrono::NaiveDateTime`](https://docs.rs/chrono/0.4/chrono/naive/struct.NaiveDateTime.html) +- Minimum supported Rust version (MSRV) is now 1.67 due to transitive `toml_edit` dependency. ## 0.11.7 diff --git a/confik/Cargo.toml b/confik/Cargo.toml index bb1b5c2..bfc20d5 100644 --- a/confik/Cargo.toml +++ b/confik/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confik" -version = "0.11.7" +version = "0.11.8" description = "A library for reading application configuration split across multiple sources" authors.workspace = true keywords.workspace = true diff --git a/confik/README.md b/confik/README.md index 479fa19..b4ac85b 100644 --- a/confik/README.md +++ b/confik/README.md @@ -3,8 +3,8 @@ [![crates.io](https://img.shields.io/crates/v/confik?label=latest)](https://crates.io/crates/confik) -[![Documentation](https://docs.rs/confik/badge.svg?version=0.11.7)](https://docs.rs/confik/0.11.7) -[![dependency status](https://deps.rs/crate/confik/0.11.7/status.svg)](https://deps.rs/crate/confik/0.11.7) +[![Documentation](https://docs.rs/confik/badge.svg?version=0.11.8)](https://docs.rs/confik/0.11.8) +[![dependency status](https://deps.rs/crate/confik/0.11.8/status.svg)](https://deps.rs/crate/confik/0.11.8) ![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/confik.svg)
[![CI](https://github.com/x52dev/confik/actions/workflows/ci.yml/badge.svg)](https://github.com/x52dev/confik/actions/workflows/ci.yml)