Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime authored Nov 30, 2024
1 parent b4d8818 commit fff6931
Show file tree
Hide file tree
Showing 12 changed files with 104 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.

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

## [Unreleased]

## [8.1.4](https://github.com/bearcove/merde/compare/merde-v8.1.3...merde-v8.1.4) - 2024-11-30

### Other

- remove async versions of things
- wip dyn serialize
- Tests pass
- no errors left?
- Fix more warnings and errors
- More!
- yay other errors
- Dwip
- Remove JsonSerialize trait
- Expose an async Deserializer interface
- Make Deserializer::next async
- Move things around re: absorbing merde_time in merde_core
- Yus

## [8.1.3](https://github.com/bearcove/merde/compare/merde-v8.1.2...merde-v8.1.3) - 2024-11-24

### 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 = "8.1.3"
version = "8.1.4"
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 = "8.1.1", path = "../merde_core", optional = true }
merde_json = { version = "8.0.2", path = "../merde_json", optional = true }
merde_yaml = { version = "8.0.2", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "8.0.2", path = "../merde_msgpack", optional = true }
merde_core = { version = "9.0.0", path = "../merde_core", optional = true }
merde_json = { version = "9.0.0", path = "../merde_json", optional = true }
merde_yaml = { version = "9.0.0", path = "../merde_yaml", optional = true }
merde_msgpack = { version = "9.0.0", path = "../merde_msgpack", optional = true }
ahash = { version = "0.8.11", optional = true }

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

## [Unreleased]

## [9.0.0](https://github.com/bearcove/merde/compare/merde_core-v8.1.1...merde_core-v9.0.0) - 2024-11-30

### Other

- Introduce DynDeserialize
- Remove workaround for https://github.com/rust-lang/rust/issues/133676
- Mhh
- Use DynSerialize in merde_json
- Introduce DynSerialize
- Rename serialize_sync to serialize
- remove async versions of things
- wip dyn serialize
- More!
- yay other errors
- Dwip
- lift static requirement
- mhh lifetimes yes
- mh
- well that's hard
- Expose to_tokio_writer
- Remove JsonSerialize trait
- Expose an async Deserializer interface
- Make Deserializer::next async
- Move things around re: absorbing merde_time in merde_core
- Yus

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

### 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 = "8.1.1"
version = "9.0.0"
authors = ["Amos Wenger <[email protected]>"]
description = "Base types for merde"
license = "Apache-2.0 OR MIT"
Expand Down
22 changes: 22 additions & 0 deletions merde_json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.0](https://github.com/bearcove/merde/compare/merde_json-v8.0.2...merde_json-v9.0.0) - 2024-11-30

### Other

- Mhh
- Use DynSerialize in merde_json
- Rename serialize_sync to serialize
- async stuff Does Not Work for now
- remove async versions of things
- wip dyn serialize
- bye bigint
- Remove unused jiter_lite methods
- Fix more warnings and errors
- More!
- yay other errors
- Dwip
- Expose to_tokio_writer
- Remove JsonSerialize trait
- Expose an async Deserializer interface
- Make Deserializer::next async
- Move things around re: absorbing merde_time in merde_core

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

### 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 = "8.0.2"
version = "9.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 = "8.1.1", path = "../merde_core" }
merde_core = { version = "9.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,4 +5,4 @@ edition = "2021"
publish = false

[dependencies]
merde_core = { version = "8.1.1", path = "../merde_core" }
merde_core = { version = "9.0.0", path = "../merde_core" }
10 changes: 10 additions & 0 deletions merde_msgpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [9.0.0](https://github.com/bearcove/merde/compare/merde_msgpack-v8.0.2...merde_msgpack-v9.0.0) - 2024-11-30

### Other

- remove async versions of things
- More!
- yay other errors
- Expose an async Deserializer interface
- Make Deserializer::next async

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

### 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 = "8.0.2"
version = "9.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 = "8.1.1", path = "../merde_core" }
merde_core = { version = "9.0.0", path = "../merde_core" }
rmp = "0.8.14"

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

## [Unreleased]

## [9.0.0](https://github.com/bearcove/merde/compare/merde_yaml-v8.0.2...merde_yaml-v9.0.0) - 2024-11-30

### Other

- remove async versions of things
- More!
- yay other errors
- Expose an async Deserializer interface
- Make Deserializer::next async

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

### 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 = "8.0.2"
version = "9.0.0"
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 = "8.1.1", path = "../merde_core" }
merde_core = { version = "9.0.0", path = "../merde_core" }
yaml-rust2 = { version = "0.8.1", default-features = false }

0 comments on commit fff6931

Please sign in to comment.