diff --git a/CHANGELOG.md b/CHANGELOG.md index 84cdb70..969107d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.17.9 #### 🚀 Updates diff --git a/Cargo.lock b/Cargo.lock index 73decd1..ca04828 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1775,7 +1775,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.17.8" +version = "0.17.9" dependencies = [ "chrono", "garde", @@ -1808,7 +1808,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.17.6" +version = "0.17.7" dependencies = [ "convert_case", "darling", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 0364f0c..3b4fa42 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.17.6" +version = "0.17.7" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index a054f34..43a62c9 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.17.8" +version = "0.17.9" edition = "2021" license = "MIT" description = "A layered serde configuration and schema library." @@ -18,7 +18,7 @@ pre-release-replacements = [ all-features = true [dependencies] -schematic_macros = { version = "0.17.6", path = "../macros" } +schematic_macros = { version = "0.17.7", path = "../macros" } schematic_types = { version = "0.9.6", path = "../types" } miette = { workspace = true } thiserror = "2.0.3"