Skip to content

Commit

Permalink
chore: release (#94)
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 7, 2024
1 parent b432899 commit e8fd297
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 12 deletions.
8 changes: 4 additions & 4 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.2.1](https://github.com/bearcove/merde/compare/merde-v6.2.0...merde-v6.2.1) - 2024-10-07

### Fixed

- Proper starter handling in merde_msgpack

## [6.2.0](https://github.com/bearcove/merde/compare/merde-v6.1.0...merde-v6.2.0) - 2024-10-06

### Added
Expand Down
8 changes: 4 additions & 4 deletions merde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde"
version = "6.2.0"
version = "6.2.1"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize with declarative macros"
Expand Down Expand Up @@ -47,10 +47,10 @@ required-features = ["json", "ahash"]

[dependencies]
merde_core = { version = "7.0.0", path = "../merde_core", optional = true }
merde_json = { version = "6.2.0", path = "../merde_json", optional = true }
merde_json = { version = "6.2.1", path = "../merde_json", optional = true }
merde_yaml = { version = "7.1.1", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "7.1.0", path = "../merde_msgpack", optional = true }
merde_time = { version = "4.0.16", path = "../merde_time", optional = true, features = [
merde_msgpack = { version = "7.1.1", path = "../merde_msgpack", optional = true }
merde_time = { version = "4.0.17", path = "../merde_time", optional = true, features = [
"merde",
"deserialize",
] }
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.2.1](https://github.com/bearcove/merde/compare/merde_json-v6.2.0...merde_json-v6.2.1) - 2024-10-07

### Fixed

- Proper starter handling in merde_msgpack

## [6.2.0](https://github.com/bearcove/merde/compare/merde_json-v6.1.0...merde_json-v6.2.0) - 2024-10-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion merde_json/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_json"
version = "6.2.0"
version = "6.2.1"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "JSON serialization and deserialization for merde, via jiter"
Expand Down
6 changes: 6 additions & 0 deletions merde_msgpack/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.1.1](https://github.com/bearcove/merde/compare/merde_msgpack-v7.1.0...merde_msgpack-v7.1.1) - 2024-10-07

### Fixed

- Proper starter handling in merde_msgpack

## [7.1.0](https://github.com/bearcove/merde/releases/tag/merde_msgpack-v7.1.0) - 2024-10-06

### Other
Expand Down
2 changes: 1 addition & 1 deletion merde_msgpack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde_msgpack"
version = "7.1.0"
version = "7.1.1"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "msgpack serizliation/deserialization for merde"
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.17](https://github.com/bearcove/merde/compare/merde_time-v4.0.16...merde_time-v4.0.17) - 2024-10-07

### Other

- updated the following local packages: merde_json

## [4.0.16](https://github.com/bearcove/merde/compare/merde_time-v4.0.15...merde_time-v4.0.16) - 2024-10-06

### Other
Expand Down
4 changes: 2 additions & 2 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.16"
version = "4.0.17"
authors = ["Amos Wenger <[email protected]>"]
description = "Wrapper date-time types for merde"
license = "Apache-2.0 OR MIT"
Expand All @@ -12,7 +12,7 @@ categories = ["encoding", "parser-implementations"]

[dependencies]
merde_core = { version = "7.0.0", path = "../merde_core", optional = true }
merde_json = { version = "6.2.0", path = "../merde_json", optional = true }
merde_json = { version = "6.2.1", path = "../merde_json", optional = true }
time = "0.3.36"

[dev-dependencies]
Expand Down

0 comments on commit e8fd297

Please sign in to comment.