diff --git a/CHANGELOG b/CHANGELOG index 31006bc..0e166e4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# Unreleased +# Version 0.8.0 - 2023-12-11 - [change][major] Mark `StreamConfig` and `UnixConfig` as non-exhaustive structs. - [change][major] Make the `MessageHeader::encode/decode()` functions take an `endian` parameter. - [add][major] Add an `endian` field to `StreamConfig` and `UnixConfig`. diff --git a/Cargo.toml b/Cargo.toml index 1c29928..082365b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fizyr-rpc" description = "Native Rust implementation of the Fizyr RPC protocol" -version = "0.7.1" +version = "0.8.0" authors = [ "Fizyr B.V. ", "Maarten de Vries ", @@ -29,7 +29,7 @@ unix-stream = ["tokio/net"] filedesc = { version = "0.6.1" } tokio = { version = "1.32.0", features = ["rt", "sync"] } tokio-seqpacket = { version = "0.7.0", optional = true } -fizyr-rpc-macros = { version = "0.7.1", path = "macros", optional = true } +fizyr-rpc-macros = { version = "0.8.0", path = "macros", optional = true } [dev-dependencies] assert2 = "0.3.11" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 424cbf4..d24298f 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "fizyr-rpc-macros" description = "procedural macros for the fizyr-rpc crate" -version = "0.7.1" +version = "0.8.0" authors = [ "Fizyr B.V. ", "Maarten de Vries ",