diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 57c9166..bf2a1be 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amq-protocol-codegen" -version = "8.0.0-alpha.1" +version = "8.0.0-alpha.2" edition = "2021" authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"] description = "AMQP specifications - codegen" @@ -19,7 +19,7 @@ handlebars = "^5.0" serde_json = "^1.0" [dependencies.amq-protocol-types] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../types" [dependencies.serde] diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index e039f16..b18b7eb 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amq-protocol" -version = "8.0.0-alpha.1" +version = "8.0.0-alpha.2" edition = "2021" authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"] description = "AMQP specifications" @@ -33,21 +33,21 @@ rustls--aws_lc_rs = ["amq-protocol-tcp/rustls--aws_lc_rs"] # default, bu rustls--ring = ["amq-protocol-tcp/rustls--ring"] # more compatible, (e.g., easily builds on Windows) [build-dependencies.amq-protocol-codegen] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../codegen" optional = true [dependencies.amq-protocol-tcp] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" default-features = false path = "../tcp" [dependencies.amq-protocol-types] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../types" [dependencies.amq-protocol-uri] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../uri" [dependencies.cookie-factory] diff --git a/tcp/Cargo.toml b/tcp/Cargo.toml index 0c042f5..52f91dd 100644 --- a/tcp/Cargo.toml +++ b/tcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amq-protocol-tcp" -version = "8.0.0-alpha.1" +version = "8.0.0-alpha.2" edition = "2021" authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"] description = "AMQP URI TCP connection handling" @@ -30,7 +30,7 @@ rustls--aws_lc_rs = ["tcp-stream/rustls--aws_lc_rs"] # default, but does rustls--ring = ["tcp-stream/rustls--ring"] # more compatible, (e.g., easily builds on Windows) [dependencies.amq-protocol-uri] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../uri" [dependencies.tcp-stream] diff --git a/types/Cargo.toml b/types/Cargo.toml index a210db2..85eb795 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amq-protocol-types" -version = "8.0.0-alpha.1" +version = "8.0.0-alpha.2" edition = "2021" authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"] description = "AMQP specifications - types" diff --git a/uri/Cargo.toml b/uri/Cargo.toml index 1b07c58..d628e70 100644 --- a/uri/Cargo.toml +++ b/uri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "amq-protocol-uri" -version = "8.0.0-alpha.1" +version = "8.0.0-alpha.2" edition = "2021" authors = ["Marc-Antoine Perennou <%arc-Antoine@Perennou.com>"] description = "AMQP URI manipulation" @@ -15,7 +15,7 @@ rust-version = "1.63.0" name = "amq_protocol_uri" [dependencies.amq-protocol-types] -version = "=8.0.0-alpha.1" +version = "=8.0.0-alpha.2" path = "../types" [dependencies]