From 57950d6fdda37de7ce98c17766931cd85219d6a9 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sun, 19 May 2024 22:54:53 -0700 Subject: [PATCH] chore: Release --- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- crates/macros/Cargo.toml | 2 +- crates/schematic/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4fe488..7bd700e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.16.1 #### 🚀 Updates diff --git a/Cargo.lock b/Cargo.lock index e4e6ae0..e64a135 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1537,7 +1537,7 @@ dependencies = [ [[package]] name = "schematic" -version = "0.16.0" +version = "0.16.1" dependencies = [ "chrono", "garde", @@ -1569,7 +1569,7 @@ dependencies = [ [[package]] name = "schematic_macros" -version = "0.16.0" +version = "0.16.1" dependencies = [ "convert_case", "darling", diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index a902e8a..d2fc37f 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic_macros" -version = "0.16.0" +version = "0.16.1" edition = "2021" license = "MIT" description = "Macros for the schematic crate." diff --git a/crates/schematic/Cargo.toml b/crates/schematic/Cargo.toml index 45770c2..bdcedd6 100644 --- a/crates/schematic/Cargo.toml +++ b/crates/schematic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "schematic" -version = "0.16.0" +version = "0.16.1" edition = "2021" license = "MIT" description = "A layered serde configuration and schema library." @@ -17,7 +17,7 @@ pre-release-replacements = [ all-features = true [dependencies] -schematic_macros = { version = "0.16.0", path = "../macros" } +schematic_macros = { version = "0.16.1", path = "../macros" } schematic_types = { version = "0.8.0", path = "../types" } miette = { workspace = true } thiserror = "1.0.61"