From 7016a119455d6f50f08d1a1b764b33c407624714 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 16 May 2024 10:15:04 -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 fcacf7f3..64b173be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.16.0 #### 💥 Breaking diff --git a/Cargo.lock b/Cargo.lock index 4c749d27..0d99eb75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1537,7 +1537,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.15.2" +version = "0.16.0" dependencies = [ "chrono", "garde", @@ -1569,7 +1569,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.15.1" +version = "0.16.0" dependencies = [ "convert_case", "darling", @@ -1580,7 +1580,7 @@ dependencies = [ [[package]] name = "schematic_types" -version = "0.7.0" +version = "0.8.0" dependencies = [ "chrono", "indexmap", @@ -1951,7 +1951,7 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test_app" -version = "0.14.0" +version = "0.15.0" dependencies = [ "chrono", "miette", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index a06ccb61..eed9dadd 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.15.1" +version = "0.16.0" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 324fc260..3a6ed201 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.15.2" +version = "0.16.0" 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.15.1", path = "../macros" } -schematic_types = { version = "0.7.0", path = "../types" } +schematic_macros = { version = "0.16.0", path = "../macros" } +schematic_types = { version = "0.8.0", path = "../types" } miette = { workspace = true } thiserror = "1.0.60" tracing = { workspace = true } diff --git a/crates/test-app/Cargo.toml b/crates/test-app/Cargo.toml index 47476577..3bda67ec 100644 --- a/crates/test-app/Cargo.toml +++ b/crates/test-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_app" -version = "0.14.0" +version = "0.15.0" edition = "2021" publish = false diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index 4a58ae66..c4ca3689 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_types" -version = "0.7.0" +version = "0.8.0" edition = "2021" license = "MIT" description = "Shapes and types for defining schemas for Rust types."