Skip to content

Commit

Permalink
chore: release (#32)
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 Sep 12, 2024
1 parent 6f18327 commit 17e6784
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 14 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.

14 changes: 14 additions & 0 deletions merde/CHANGELOG.md
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]

## [3.1.1](https://github.com/bearcove/merde/compare/merde-v3.1.0...merde-v3.1.1) - 2024-09-12

### Other

- Fix logo
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 = "3.1.0"
version = "3.1.1"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize with declarative macros"
Expand All @@ -26,9 +26,9 @@ path = "examples/into_static.rs"
required-features = ["json"]

[dependencies]
merde_core = { version = "3.0.0", path = "../merde_core", optional = true }
merde_json = { version = "3.0.0", path = "../merde_json", optional = true }
merde_time = { version = "3.0.0", path = "../merde_time", optional = true }
merde_core = { version = "3.0.1", path = "../merde_core", optional = true }
merde_json = { version = "3.0.1", path = "../merde_json", optional = true }
merde_time = { version = "3.0.1", path = "../merde_time", optional = true }

[features]
default = ["core", "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]

## [3.0.1](https://github.com/bearcove/merde/compare/merde_core-v3.0.0...merde_core-v3.0.1) - 2024-09-12

### Other

- Remove unused dependencies

## [2.2.3](https://github.com/bearcove/merde_json/compare/merde_json_types-v2.2.2...merde_json_types-v2.2.3) - 2024-09-05

### 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 = "3.0.0"
version = "3.0.1"
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]

## [3.0.1](https://github.com/bearcove/merde/compare/merde_json-v3.0.0...merde_json-v3.0.1) - 2024-09-12

### Other

- updated the following local packages: merde_core

## [2.4.1](https://github.com/bearcove/merde_json/compare/merde_json-v2.4.0...merde_json-v2.4.1) - 2024-09-05

### 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 = "3.0.0"
version = "3.0.1"
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]
jiter = "0.5.0"
merde_core = { version = "3.0.0", path = "../merde_core" }
merde_core = { version = "3.0.1", path = "../merde_core" }

[features]
default = []
Expand Down
14 changes: 14 additions & 0 deletions merde_time/CHANGELOG.md
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]

## [3.0.1](https://github.com/bearcove/merde/compare/merde_time-v3.0.0...merde_time-v3.0.1) - 2024-09-12

### Other

- Re-export OffsetDateTime
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 = "3.0.0"
version = "3.0.1"
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 = "3.0.0", path = "../merde_core", optional = true }
merde_json = { version = "3.0.0", path = "../merde_json", optional = true }
merde_core = { version = "3.0.1", path = "../merde_core", optional = true }
merde_json = { version = "3.0.1", path = "../merde_json", optional = true }
time = "0.3.36"

[dev-dependencies]
Expand Down

0 comments on commit 17e6784

Please sign in to comment.