From 4e4f14cb26e3ec73599c9ebe6501d1e62473e797 Mon Sep 17 00:00:00 2001 From: minghuaw Date: Fri, 11 Mar 2022 02:47:55 -0800 Subject: [PATCH] rolled up version --- examples/protocol_test/Cargo.toml | 2 +- fe2o3-amqp/Cargo.toml | 2 +- fe2o3-amqp/Changelog.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/examples/protocol_test/Cargo.toml b/examples/protocol_test/Cargo.toml index 7565f485..acab7847 100644 --- a/examples/protocol_test/Cargo.toml +++ b/examples/protocol_test/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -fe2o3-amqp = {version = "0.0.2", path = "../../fe2o3-amqp"} +fe2o3-amqp = {version = "0.0.3", path = "../../fe2o3-amqp"} tokio = { version = "1.11.0", features = ["net", "macros", "rt-multi-thread", "time"] } tracing = "0.1.31" tracing-subscriber = "0.3.9" diff --git a/fe2o3-amqp/Cargo.toml b/fe2o3-amqp/Cargo.toml index 271105ae..1fb617a3 100644 --- a/fe2o3-amqp/Cargo.toml +++ b/fe2o3-amqp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fe2o3-amqp" -version = "0.0.2" +version = "0.0.3" edition = "2021" description = "An implementation of AMQP1.0 protocol based on serde and tokio" license = "MIT/Apache-2.0" diff --git a/fe2o3-amqp/Changelog.md b/fe2o3-amqp/Changelog.md index 83c32f90..58bd6a6e 100644 --- a/fe2o3-amqp/Changelog.md +++ b/fe2o3-amqp/Changelog.md @@ -1,5 +1,9 @@ # Change Log +## 0.0.3 + +1. Made session and link's errors public + ## 0.0.2 1. Added `#![deny(missing_docs, missing_debug_implementations)]`