-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a6431c7
commit b1d525c
Showing
5 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "merde" | ||
version = "6.0.0" | ||
version = "6.0.1" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "merde_yaml" | ||
version = "6.0.0" | ||
version = "7.0.0" | ||
edition = "2021" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
description = "YAML deserialization for merde" | ||
|