From b1d525cf54b72a795581ab3c148ec5448105e4bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 15:08:12 +0200 Subject: [PATCH] chore: release (#78) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- merde/CHANGELOG.md | 7 +++++++ merde/Cargo.toml | 4 ++-- merde_yaml/CHANGELOG.md | 14 ++++++++++++++ merde_yaml/Cargo.toml | 2 +- 5 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 merde_yaml/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 9b36955..eba3993 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "merde" -version = "6.0.0" +version = "6.0.1" dependencies = [ "merde_core", "merde_json", @@ -204,7 +204,7 @@ dependencies = [ [[package]] name = "merde_yaml" -version = "6.0.0" +version = "7.0.0" dependencies = [ "merde_core", "yaml-rust2", diff --git a/merde/CHANGELOG.md b/merde/CHANGELOG.md index 3546630..3ee9308 100644 --- a/merde/CHANGELOG.md +++ b/merde/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [6.0.1](https://github.com/bearcove/merde/compare/merde-v6.0.0...merde-v6.0.1) - 2024-10-01 + +### Other + +- respect StreamEnd +- merde_yaml is v6 + ## [6.0.0](https://github.com/bearcove/merde/compare/merde-v5.1.1...merde-v6.0.0) - 2024-09-22 ### Added diff --git a/merde/Cargo.toml b/merde/Cargo.toml index 92be9d4..f9fbc83 100644 --- a/merde/Cargo.toml +++ b/merde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "merde" -version = "6.0.0" +version = "6.0.1" edition = "2021" authors = ["Amos Wenger "] description = "Serialize and deserialize with declarative macros" @@ -43,7 +43,7 @@ required-features = ["yaml"] [dependencies] merde_core = { version = "6.0.0", path = "../merde_core", optional = true } merde_json = { version = "6.0.0", path = "../merde_json", optional = true } -merde_yaml = { version = "6.0.0", path = "../merde_yaml", optional = true } +merde_yaml = { version = "7.0.0", path = "../merde_yaml", optional = true } merde_time = { version = "4.0.11", path = "../merde_time", optional = true, features = [ "merde", "deserialize", diff --git a/merde_yaml/CHANGELOG.md b/merde_yaml/CHANGELOG.md new file mode 100644 index 0000000..f8a4d96 --- /dev/null +++ b/merde_yaml/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [7.0.0](https://github.com/bearcove/merde/compare/merde_yaml-v6.0.0...merde_yaml-v7.0.0) - 2024-10-01 + +### Other + +- respect StreamEnd diff --git a/merde_yaml/Cargo.toml b/merde_yaml/Cargo.toml index bbc4a42..93ddeff 100644 --- a/merde_yaml/Cargo.toml +++ b/merde_yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "merde_yaml" -version = "6.0.0" +version = "7.0.0" edition = "2021" authors = ["Amos Wenger "] description = "YAML deserialization for merde"