From 48b33cdf4ec8b0fc3017575b6369d74e08a03ac8 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 14 Nov 2021 21:04:01 +0100 Subject: [PATCH] Bump version numbers for 0.8.0 release --- quinn-proto/Cargo.toml | 2 +- quinn-udp/Cargo.toml | 4 ++-- quinn/Cargo.toml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/quinn-proto/Cargo.toml b/quinn-proto/Cargo.toml index 867447911..67aac5937 100644 --- a/quinn-proto/Cargo.toml +++ b/quinn-proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quinn-proto" -version = "0.7.0" +version = "0.8.0" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "State machine for the QUIC transport protocol" diff --git a/quinn-udp/Cargo.toml b/quinn-udp/Cargo.toml index 6e827d9b6..d5ca0cb10 100644 --- a/quinn-udp/Cargo.toml +++ b/quinn-udp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quinn-udp" -version = "0.1.0-beta.1" +version = "0.1.0" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "UDP sockets with ECN information for the QUIC transport protocol" @@ -19,7 +19,7 @@ maintenance = { status = "experimental" } futures-util = { version = "0.3.11", features = ["io"] } libc = "0.2.69" mio = { version = "0.7.7", features = ["net"] } -proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.7" } +proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.8" } socket2 = "0.4" tracing = "0.1.10" tokio = { version = "1.0.1", features = ["net"] } diff --git a/quinn/Cargo.toml b/quinn/Cargo.toml index 6ee1d642e..6fe05a57d 100644 --- a/quinn/Cargo.toml +++ b/quinn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quinn" -version = "0.7.0" +version = "0.8.0" license = "MIT OR Apache-2.0" repository = "https://github.com/quinn-rs/quinn" description = "QUIC transport protocol implementation for Tokio" @@ -30,12 +30,12 @@ bytes = "1" futures-util = { version = "0.3.11", default-features = false, features = ["io"] } futures-channel = "0.3.11" fxhash = "0.2.1" -proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.7", default-features = false } +proto = { package = "quinn-proto", path = "../quinn-proto", version = "0.8", default-features = false } rustls = { version = "0.20", default-features = false, features = ["quic"], optional = true } thiserror = "1.0.21" tracing = "0.1.10" tokio = { version = "1.0.1", features = ["rt", "time"] } -udp = { package = "quinn-udp", path = "../quinn-udp", version = "0.1.0-beta.1" } +udp = { package = "quinn-udp", path = "../quinn-udp", version = "0.1.0" } webpki = { version = "0.22", default-features = false, optional = true } [dev-dependencies]