Skip to content

Commit

Permalink
chore: release (#84)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Oct 4, 2024
1 parent 8cf90c6 commit b0ef446
Show file tree
Hide file tree
Showing 11 changed files with 48 additions and 18 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions merde/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.3](https://github.com/bearcove/merde/compare/merde-v6.0.2...merde-v6.0.3) - 2024-10-04

### Other

- updated the following local packages: merde_core, merde_json

## [6.0.2](https://github.com/bearcove/merde/compare/merde-v6.0.1...merde-v6.0.2) - 2024-10-04

### Other
Expand Down
10 changes: 5 additions & 5 deletions merde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde"
version = "6.0.2"
version = "6.0.3"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize with declarative macros"
Expand Down Expand Up @@ -41,10 +41,10 @@ path = "examples/yaml.rs"
required-features = ["yaml"]

[dependencies]
merde_core = { version = "6.0.1", path = "../merde_core", optional = true }
merde_json = { version = "6.0.1", path = "../merde_json", optional = true }
merde_yaml = { version = "7.0.1", path = "../merde_yaml", optional = true }
merde_time = { version = "4.0.12", path = "../merde_time", optional = true, features = [
merde_core = { version = "6.0.2", path = "../merde_core", optional = true }
merde_json = { version = "6.0.2", path = "../merde_json", optional = true }
merde_yaml = { version = "7.0.2", path = "../merde_yaml", optional = true }
merde_time = { version = "4.0.13", path = "../merde_time", optional = true, features = [
"merde",
"deserialize",
] }
Expand Down
6 changes: 6 additions & 0 deletions merde_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.2](https://github.com/bearcove/merde/compare/merde_core-v6.0.1...merde_core-v6.0.2) - 2024-10-04

### Other

- Make MerdeJsonError implement IntoStatic + impl for Result

## [6.0.1](https://github.com/bearcove/merde/compare/merde_core-v6.0.0...merde_core-v6.0.1) - 2024-10-04

### Other
Expand Down
2 changes: 1 addition & 1 deletion merde_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "merde_core"
version = "6.0.1"
version = "6.0.2"
authors = ["Amos Wenger <[email protected]>"]
description = "Base types for merde"
license = "Apache-2.0 OR MIT"
Expand Down
6 changes: 6 additions & 0 deletions merde_json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.2](https://github.com/bearcove/merde/compare/merde_json-v6.0.1...merde_json-v6.0.2) - 2024-10-04

### Other

- Make MerdeJsonError implement IntoStatic + impl for Result

## [6.0.1](https://github.com/bearcove/merde/compare/merde_json-v6.0.0...merde_json-v6.0.1) - 2024-10-04

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_json"
version = "6.0.1"
version = "6.0.2"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "JSON serialization and deserialization for merde, via jiter"
Expand All @@ -12,7 +12,7 @@ categories = ["encoding", "parser-implementations"]

[dependencies]
lexical-parse-float = { version = "0.8.5", features = ["format"] }
merde_core = { version = "6.0.1", path = "../merde_core" }
merde_core = { version = "6.0.2", path = "../merde_core" }
num-bigint = { version = "0.4.6", optional = true }
num-traits = { version = "0.2.19", optional = true }

Expand Down
6 changes: 6 additions & 0 deletions merde_time/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.0.13](https://github.com/bearcove/merde/compare/merde_time-v4.0.12...merde_time-v4.0.13) - 2024-10-04

### Other

- updated the following local packages: merde_core, merde_json

## [4.0.12](https://github.com/bearcove/merde/compare/merde_time-v4.0.11...merde_time-v4.0.12) - 2024-10-04

### Other
Expand Down
6 changes: 3 additions & 3 deletions merde_time/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "merde_time"
version = "4.0.12"
version = "4.0.13"
authors = ["Amos Wenger <[email protected]>"]
description = "Wrapper date-time types for merde"
license = "Apache-2.0 OR MIT"
Expand All @@ -11,8 +11,8 @@ keywords = ["merde", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde_core = { version = "6.0.1", path = "../merde_core", optional = true }
merde_json = { version = "6.0.1", path = "../merde_json", optional = true }
merde_core = { version = "6.0.2", path = "../merde_core", optional = true }
merde_json = { version = "6.0.2", path = "../merde_json", optional = true }
time = "0.3.36"

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions merde_yaml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [7.0.2](https://github.com/bearcove/merde/compare/merde_yaml-v7.0.1...merde_yaml-v7.0.2) - 2024-10-04

### Other

- updated the following local packages: merde_core

## [7.0.1](https://github.com/bearcove/merde/compare/merde_yaml-v7.0.0...merde_yaml-v7.0.1) - 2024-10-04

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde_yaml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_yaml"
version = "7.0.1"
version = "7.0.2"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "YAML deserialization for merde"
Expand All @@ -11,5 +11,5 @@ keywords = ["yaml", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

[dependencies]
merde_core = { version = "6.0.1", path = "../merde_core" }
merde_core = { version = "6.0.2", path = "../merde_core" }
yaml-rust2 = { version = "0.8.1", default-features = false }

0 comments on commit b0ef446

Please sign in to comment.