Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #111

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 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]

## [8.1.2](https://github.com/bearcove/merde/compare/merde-v8.1.1...merde-v8.1.2) - 2024-11-20

### Other

- Fix deser/ser impls in merde_time after phasing out JsonSerialize trait

## [8.1.1](https://github.com/bearcove/merde/compare/merde-v8.1.0...merde-v8.1.1) - 2024-11-20

### Other
Expand Down
4 changes: 2 additions & 2 deletions merde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merde"
version = "8.1.1"
version = "8.1.2"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize with declarative macros"
Expand Down Expand Up @@ -60,7 +60,7 @@ merde_core = { version = "8.1.0", path = "../merde_core", optional = true }
merde_json = { version = "8.0.1", path = "../merde_json", optional = true }
merde_yaml = { version = "8.0.1", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "8.0.1", path = "../merde_msgpack", optional = true }
merde_time = { version = "8.0.1", path = "../merde_time", optional = true, features = [
merde_time = { version = "8.0.2", path = "../merde_time", optional = true, features = [
"merde",
"serialize",
"deserialize",
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]

## [8.0.2](https://github.com/bearcove/merde/compare/merde_time-v8.0.1...merde_time-v8.0.2) - 2024-11-20

### Other

- Fix deser/ser impls in merde_time after phasing out JsonSerialize trait

## [8.0.1](https://github.com/bearcove/merde/compare/merde_time-v8.0.0...merde_time-v8.0.1) - 2024-11-20

### Other
Expand Down
2 changes: 1 addition & 1 deletion 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 = "8.0.1"
version = "8.0.2"
authors = ["Amos Wenger <[email protected]>"]
description = "Wrapper date-time types for merde"
license = "Apache-2.0 OR MIT"
Expand Down