diff --git a/CHANGELOG.md b/CHANGELOG.md index f86c2464..cbb32876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.13.5 #### 🚀 Updates diff --git a/Cargo.lock b/Cargo.lock index 557f5f48..27ef07f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2410,7 +2410,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.13.4" +version = "0.13.5" dependencies = [ "chrono", "garde", @@ -2442,7 +2442,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.13.3" +version = "0.13.4" dependencies = [ "convert_case", "darling", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "schematic_types" -version = "0.5.3" +version = "0.5.4" dependencies = [ "chrono", "indexmap 2.1.0", @@ -2962,7 +2962,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_app" -version = "0.12.3" +version = "0.12.4" dependencies = [ "chrono", "miette", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index dd2cedde..604ade11 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.13.3" +version = "0.13.4" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 8706a91e..ba1cba1f 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.13.4" +version = "0.13.5" edition = "2021" license = "MIT" description = "A layered serde configuration and schema library." @@ -17,8 +17,8 @@ pre-release-replacements = [ all-features = true [dependencies] -schematic_macros = { version = "0.13.3", path = "../macros" } -schematic_types = { version = "0.5.3", path = "../types" } +schematic_macros = { version = "0.13.4", path = "../macros" } +schematic_types = { version = "0.5.4", path = "../types" } miette = { workspace = true } thiserror = "1.0.56" tracing = "0.1.40" diff --git a/crates/test-app/Cargo.toml b/crates/test-app/Cargo.toml index e66e5ae3..c01d76fa 100644 --- a/crates/test-app/Cargo.toml +++ b/crates/test-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_app" -version = "0.12.3" +version = "0.12.4" edition = "2021" publish = false diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 958681e5..6d7435ef 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_types" -version = "0.5.3" +version = "0.5.4" edition = "2021" license = "MIT" description = "Shapes and types for defining schemas for Rust types."