Skip to content

Commit

Permalink
Bump version numbers for 0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
djc authored and Ralith committed Nov 14, 2021
1 parent 9a769f2 commit 48b33cd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion quinn-proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions quinn-udp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
6 changes: 3 additions & 3 deletions quinn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit 48b33cd

Please sign in to comment.