From b568d9b54fda64bcbdd0ab9ca771fc735590e879 Mon Sep 17 00:00:00 2001 From: Maarten de Vries Date: Sun, 26 Nov 2023 23:40:58 +0100 Subject: [PATCH] Bump version to 0.7.1. --- CHANGELOG | 2 +- Cargo.toml | 4 ++-- macros/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 7b1f766..0efe0c2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -# Unreleased +# Version 0.7.1 - 2023-11-26 - [change][patch] Remove dependency on `byteorder` crate. # Version 0.7.0 - 2023-09-20 diff --git a/Cargo.toml b/Cargo.toml index fccd134..1c29928 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.0" +version = "0.7.1" 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.0", path = "macros", optional = true } +fizyr-rpc-macros = { version = "0.7.1", path = "macros", optional = true } [dev-dependencies] assert2 = "0.3.11" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 660914b..424cbf4 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.0" +version = "0.7.1" authors = [ "Fizyr B.V. ", "Maarten de Vries ",