From e60c8683dc6f3e992953f7e7d625938cb404dbb0 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 19 Aug 2024 12:23:58 -0700 Subject: [PATCH] chore: Release --- CHANGELOG.md | 2 +- Cargo.lock | 8 ++++---- crates/macros/Cargo.toml | 2 +- crates/schematic/Cargo.toml | 6 +++--- crates/test-app/Cargo.toml | 2 +- crates/types/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 161c0d0..b3083b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.17.3 #### 🐞 Fixes diff --git a/Cargo.lock b/Cargo.lock index 95de5e8..7728610 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1638,7 +1638,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.17.2" +version = "0.17.3" dependencies = [ "chrono", "garde", @@ -1671,7 +1671,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.17.1" +version = "0.17.2" dependencies = [ "convert_case", "darling", @@ -1682,7 +1682,7 @@ dependencies = [ [[package]] name = "schematic_types" -version = "0.9.2" +version = "0.9.3" dependencies = [ "chrono", "indexmap", @@ -2054,7 +2054,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_app" -version = "0.16.1" +version = "0.16.2" dependencies = [ "chrono", "miette", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 997cc36..89e6230 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.17.1" +version = "0.17.2" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 18bd07a..6dea212 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.17.2" +version = "0.17.3" 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.1", path = "../macros" } -schematic_types = { version = "0.9.2", path = "../types" } +schematic_macros = { version = "0.17.2", path = "../macros" } +schematic_types = { version = "0.9.3", path = "../types" } miette = { workspace = true } thiserror = "1.0.63" tracing = { workspace = true } diff --git a/crates/test-app/Cargo.toml b/crates/test-app/Cargo.toml index 074a26b..cd4142b 100644 --- a/crates/test-app/Cargo.toml +++ b/crates/test-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_app" -version = "0.16.1" +version = "0.16.2" edition = "2021" publish = false diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index de51342..b5df647 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_types" -version = "0.9.2" +version = "0.9.3" edition = "2021" license = "MIT" description = "Shapes and types for defining schemas for Rust types."