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 v10.0.0 #115

Merged
merged 1 commit into from
Dec 4, 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
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]

## [10.0.0](https://github.com/bearcove/merde/compare/merde-v9.0.1...merde-v10.0.0) - 2024-12-04

### Other

- [**breaking**] Force a major version bump

## [9.0.1](https://github.com/bearcove/merde/compare/merde-v9.0.0...merde-v9.0.1) - 2024-12-02

### 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 = "9.0.1"
version = "10.0.0"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "Serialize and deserialize with declarative macros"
Expand Down Expand Up @@ -56,10 +56,10 @@ path = "examples/opinions.rs"
required-features = ["json"]

[dependencies]
merde_core = { version = "9.0.1", path = "../merde_core", optional = true }
merde_json = { version = "9.0.1", path = "../merde_json", optional = true }
merde_yaml = { version = "9.0.1", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "9.0.1", path = "../merde_msgpack", optional = true }
merde_core = { version = "10.0.0", path = "../merde_core", optional = true }
merde_json = { version = "10.0.0", path = "../merde_json", optional = true }
merde_yaml = { version = "10.0.0", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "10.0.0", path = "../merde_msgpack", optional = true }
ahash = { version = "0.8.11", optional = true }

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

## [Unreleased]

## [10.0.0](https://github.com/bearcove/merde/compare/merde_core-v9.0.1...merde_core-v10.0.0) - 2024-12-04

### Other

- [**breaking**] Force a major version bump
- remove rubicon (merde has a single ABI now anyway)

## [9.0.1](https://github.com/bearcove/merde/compare/merde_core-v9.0.0...merde_core-v9.0.1) - 2024-12-02

### 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 = "9.0.1"
version = "10.0.0"
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]

## [10.0.0](https://github.com/bearcove/merde/compare/merde_json-v9.0.1...merde_json-v10.0.0) - 2024-12-04

### Other

- [**breaking**] Force a major version bump

## [9.0.1](https://github.com/bearcove/merde/compare/merde_json-v9.0.0...merde_json-v9.0.1) - 2024-12-02

### 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 = "9.0.1"
version = "10.0.0"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "JSON serialization and deserialization for merde, via jiter"
Expand All @@ -13,7 +13,7 @@ categories = ["encoding", "parser-implementations"]
[dependencies]
itoa = "1.0.11"
lexical-parse-float = { version = "0.8.5", features = ["format"] }
merde_core = { version = "9.0.1", path = "../merde_core" }
merde_core = { version = "10.0.0", path = "../merde_core" }
ryu = "1.0.18"
tokio = { version = "1", optional = true, features = ["io-util"] }

Expand Down
2 changes: 1 addition & 1 deletion merde_loggingserializer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
merde_core = { version = "9.0.1", path = "../merde_core" }
merde_core = { version = "10.0.0", path = "../merde_core" }

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]

## [10.0.0](https://github.com/bearcove/merde/compare/merde_msgpack-v9.0.1...merde_msgpack-v10.0.0) - 2024-12-04

### Other

- [**breaking**] Force a major version bump

## [9.0.1](https://github.com/bearcove/merde/compare/merde_msgpack-v9.0.0...merde_msgpack-v9.0.1) - 2024-12-02

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

[dependencies]
merde_core = { version = "9.0.1", path = "../merde_core" }
merde_core = { version = "10.0.0", path = "../merde_core" }
rmp = "0.8.14"

[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]

## [10.0.0](https://github.com/bearcove/merde/compare/merde_yaml-v9.0.1...merde_yaml-v10.0.0) - 2024-12-04

### Other

- [**breaking**] Force a major version bump

## [9.0.1](https://github.com/bearcove/merde/compare/merde_yaml-v9.0.0...merde_yaml-v9.0.1) - 2024-12-02

### 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 = "9.0.1"
version = "10.0.0"
edition = "2021"
authors = ["Amos Wenger <[email protected]>"]
description = "YAML deserialization for merde"
Expand All @@ -11,6 +11,6 @@ keywords = ["yaml", "serialization", "deserialization"]
categories = ["encoding", "parser-implementations"]

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

Loading