Skip to content

Commit

Permalink
v7.1.2
Browse files Browse the repository at this point in the history
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
  • Loading branch information
Keruspe committed May 19, 2023
1 parent 0a85944 commit c021ceb
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amq-protocol-codegen"
version = "7.1.1" # remember to update html_root_url
version = "7.1.2" # remember to update html_root_url
edition = "2021"
authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"]
description = "AMQP specifications - codegen"
Expand All @@ -19,7 +19,7 @@ handlebars = "^4.0"
serde_json = "^1.0"

[dependencies.amq-protocol-types]
version = "=7.1.1"
version = "=7.1.2"
path = "../types"

[dependencies.serde]
Expand Down
2 changes: 1 addition & 1 deletion codegen/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/amq-protocol-codegen/7.1.1/")]
#![doc(html_root_url = "https://docs.rs/amq-protocol-codegen/7.1.2/")]

//! # AMQP code generation utilities
//!
Expand Down
10 changes: 5 additions & 5 deletions protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amq-protocol"
version = "7.1.1" # remember to update html_root_url
version = "7.1.2" # remember to update html_root_url
edition = "2021"
authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"]
description = "AMQP specifications"
Expand Down Expand Up @@ -28,21 +28,21 @@ vendored-openssl = ["amq-protocol-tcp/vendored-openssl"]
verbose-errors = ["amq-protocol-types/verbose-errors"]

[build-dependencies.amq-protocol-codegen]
version = "=7.1.1"
version = "=7.1.2"
path = "../codegen"
optional = true

[dependencies.amq-protocol-tcp]
version = "=7.1.1"
version = "=7.1.2"
default-features = false
path = "../tcp"

[dependencies.amq-protocol-types]
version = "=7.1.1"
version = "=7.1.2"
path = "../types"

[dependencies.amq-protocol-uri]
version = "=7.1.1"
version = "=7.1.2"
path = "../uri"

[dependencies.cookie-factory]
Expand Down
2 changes: 1 addition & 1 deletion protocol/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/amq-protocol/7.1.1/")]
#![doc(html_root_url = "https://docs.rs/amq-protocol/7.1.2/")]

//! # AMQP manipulation library
//!
Expand Down
4 changes: 2 additions & 2 deletions tcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amq-protocol-tcp"
version = "7.1.1" # remember to update html_root_url
version = "7.1.2" # remember to update html_root_url
edition = "2021"
authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"]
description = "AMQP URI TCP connection handling"
Expand All @@ -25,7 +25,7 @@ rustls-connector = ["tcp-stream/rustls-connector"]
vendored-openssl = ["tcp-stream/vendored-openssl"]

[dependencies.amq-protocol-uri]
version = "=7.1.1"
version = "=7.1.2"
path = "../uri"

[dependencies.tcp-stream]
Expand Down
2 changes: 1 addition & 1 deletion tcp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/amq-protocol-tcp/7.1.1/")]
#![doc(html_root_url = "https://docs.rs/amq-protocol-tcp/7.1.2/")]

//! # AMQP URI TCP connection handling
//!
Expand Down
2 changes: 1 addition & 1 deletion types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amq-protocol-types"
version = "7.1.1" # remember to update html_root_url
version = "7.1.2" # remember to update html_root_url
edition = "2021"
authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"]
description = "AMQP specifications - types"
Expand Down
2 changes: 1 addition & 1 deletion types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/amq-protocol-types/7.1.1/")]
#![doc(html_root_url = "https://docs.rs/amq-protocol-types/7.1.2/")]

//! # AMQP types manipulation library
//!
Expand Down
4 changes: 2 additions & 2 deletions uri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amq-protocol-uri"
version = "7.1.1" # remember to update html_root_url
version = "7.1.2" # remember to update html_root_url
edition = "2021"
authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"]
description = "AMQP URI manipulation"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.63.0"
name = "amq_protocol_uri"

[dependencies.amq-protocol-types]
version = "=7.1.1"
version = "=7.1.2"
path = "../types"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion uri/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![deny(missing_docs)]
#![warn(rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/amq-protocol-uri/7.1.1/")]
#![doc(html_root_url = "https://docs.rs/amq-protocol-uri/7.1.2/")]

//! # AMQP URI manipulation library
//!
Expand Down

0 comments on commit c021ceb

Please sign in to comment.