diff --git a/CHANGELOG.md b/CHANGELOG.md index e3eec3d..a46ba68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.17.7 #### 🐞 Fixes diff --git a/Cargo.lock b/Cargo.lock index fa9a7b7..22c57c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1772,7 +1772,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.17.6" +version = "0.17.7" dependencies = [ "chrono", "garde", @@ -1805,7 +1805,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.17.4" +version = "0.17.5" dependencies = [ "convert_case", "darling", @@ -1816,7 +1816,7 @@ dependencies = [ [[package]] name = "schematic_types" -version = "0.9.5" +version = "0.9.6" dependencies = [ "chrono", "indexmap", @@ -2209,7 +2209,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_app" -version = "0.16.4" +version = "0.16.5" dependencies = [ "chrono", "miette", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 6c28896..1fa49b7 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.17.4" +version = "0.17.5" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 43d4243..59bd990 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.17.6" +version = "0.17.7" edition = "2021" license = "MIT" description = "A layered serde configuration and schema library." @@ -18,8 +18,8 @@ pre-release-replacements = [ all-features = true [dependencies] -schematic_macros = { version = "0.17.4", path = "../macros" } -schematic_types = { version = "0.9.5", path = "../types" } +schematic_macros = { version = "0.17.5", path = "../macros" } +schematic_types = { version = "0.9.6", path = "../types" } miette = { workspace = true } thiserror = "2.0.3" tracing = { workspace = true } diff --git a/crates/test-app/Cargo.toml b/crates/test-app/Cargo.toml index 5155972..bb5ff3b 100644 --- a/crates/test-app/Cargo.toml +++ b/crates/test-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_app" -version = "0.16.4" +version = "0.16.5" edition = "2021" publish = false diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 8d9a80a..60f0548 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_types" -version = "0.9.5" +version = "0.9.6" edition = "2021" license = "MIT" description = "Shapes and types for defining schemas for Rust types."