diff --git a/Cargo.lock b/Cargo.lock index b13d649..4f0f9a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -222,7 +222,7 @@ dependencies = [ [[package]] name = "confik" -version = "0.15.10" +version = "0.15.11" dependencies = [ "ahash 0.8.12", "anyhow", diff --git a/confik/CHANGELOG.md b/confik/CHANGELOG.md index fcdd57f..40e760d 100644 --- a/confik/CHANGELOG.md +++ b/confik/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.15.11 + - Add a new helper `MergingUnsetBuilder` and trait `MergingWithUnset`, for aiding in building of custom `Configuration` implementations. See the docs on `MergingWithUnset` for a worked example. - Fix `serde_json::Value` merge when the first parsed config doesn't have any value set. diff --git a/confik/Cargo.toml b/confik/Cargo.toml index 1dac4c6..a70eacb 100644 --- a/confik/Cargo.toml +++ b/confik/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "confik" -version = "0.15.10" +version = "0.15.11" description = "Compose configuration from multiple sources without giving up type safety" authors.workspace = true keywords.workspace = true diff --git a/confik/README.md b/confik/README.md index fc1ccbb..6cf7a2d 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.15.10)](https://docs.rs/confik/0.15.10) -[![dependency status](https://deps.rs/crate/confik/0.15.10/status.svg)](https://deps.rs/crate/confik/0.15.10) +[![Documentation](https://docs.rs/confik/badge.svg?version=0.15.11)](https://docs.rs/confik/0.15.11) +[![dependency status](https://deps.rs/crate/confik/0.15.11/status.svg)](https://deps.rs/crate/confik/0.15.11) ![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)