Skip to content

Commit d7bd17b

Browse files
committed
Release v0.7.0
1 parent 5bf0d9e commit d7bd17b

File tree

5 files changed

+14
-20
lines changed

5 files changed

+14
-20
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.7.0]
99

1010
### Added
1111

@@ -104,7 +104,8 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
104104

105105
- Initial commit.
106106

107-
[Unreleased]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.6.0...main
107+
[Unreleased]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.7.0...main
108+
[0.7.0]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.6.0...v0.7.0
108109
[0.6.0]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.2...v0.6.0
109110
[0.5.2]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.1...v0.5.2
110111
[0.5.1]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.0...v0.5.1

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ license = "MIT OR Apache-2.0"
1313
name = "axum-server-dual-protocol"
1414
repository = "https://github.com/daxpedda/axum-server-dual-protocol"
1515
rust-version = "1.66"
16-
version = "0.6.0"
16+
version = "0.7.0"
1717

1818
[features]
1919
default = ["rustls/aws-lc-rs"]
2020

2121
[dependencies]
22-
axum-server = { version = "0.7", default-features = false, features = ["tls-rustls-no-provider"] }
22+
axum-server = { version = "0.7.1", default-features = false, features = ["tls-rustls-no-provider"] }
2323
bytes = { version = "1", default-features = false }
2424
http = "1"
2525
http-body-util = "0.1"
@@ -44,7 +44,6 @@ rustls = { version = "0.23", features = ["aws-lc-rs"] }
4444
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
4545

4646
[patch.crates-io]
47-
axum-server = { git = "https://github.com/daxpedda/axum-server", branch = "crypto-provider" }
4847
rcgen = { git = "https://github.com/daxpedda/rcgen", branch = "aws-lc-rs-default-features" }
4948

5049
[[test]]

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,20 +94,20 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
9494
work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
9595
additional terms or conditions.
9696

97-
[CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/CHANGELOG.md
98-
[LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-MIT
99-
[LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-APACHE
97+
[CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/CHANGELOG.md
98+
[LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-MIT
99+
[LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-APACHE
100100
[`aws-lc-rs`]: https://docs.rs/aws-lc-rs/1
101101
[`axum`]: https://docs.rs/axum/0.7
102102
[`axum-server`]: https://docs.rs/axum-server/0.7.0
103103
[`bind_dual_protocol()`]:
104-
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/fn.bind_dual_protocol.html
104+
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/fn.bind_dual_protocol.html
105105
[`CryptoProvider`]: https://docs.rs/rustls/0.23/rustls/crypto/struct.CryptoProvider.html
106106
[`hyper`]: https://docs.rs/hyper/1
107107
[`Layer`]: https://docs.rs/tower-layer/0.3/tower_layer/trait.Layer.html
108108
[`Router`]: https://docs.rs/axum/0.7/axum/struct.Router.html
109109
[`ServerExt::set_upgrade()`]:
110-
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/trait.ServerExt.html#tymethod.set_upgrade
110+
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/trait.ServerExt.html#tymethod.set_upgrade
111111
[`tower`]: https://docs.rs/tower/0.4
112112
[`UpgradeHttpLayer`]:
113-
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/struct.UpgradeHttpLayer.html
113+
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/struct.UpgradeHttpLayer.html

minimal-versions/Cargo.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,5 @@ version = "0.0.0"
66

77
[dependencies]
88
axum-server-dual-protocol = { path = ".." }
9-
# `axum-server` v0.7.0 incorrectly only requires `hyper-util` v0.1
10-
hyper-util = "0.1.2"
119
# `tower` v0.4.0 incorrectly only requires `tower-layer` v0.3.0
1210
tower-layer = "0.3.1"
13-
14-
[patch.crates-io]
15-
axum-server = { git = "https://github.com/daxpedda/axum-server", branch = "crypto-provider" }
16-
rcgen = { git = "https://github.com/daxpedda/rcgen", branch = "aws-lc-rs-default-features" }

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@
123123
//! license, shall be dual licensed as above, without any additional terms or
124124
//! conditions.
125125
//!
126-
//! [CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/CHANGELOG.md
127-
//! [LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-MIT
128-
//! [LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-APACHE
126+
//! [CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/CHANGELOG.md
127+
//! [LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-MIT
128+
//! [LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-APACHE
129129
//! [`aws-lc-rs`]: https://docs.rs/aws-lc-rs/1
130130
//! [`axum`]: https://docs.rs/axum/0.7
131131
//! [`CryptoProvider`]: tokio_rustls::rustls::crypto::CryptoProvider

0 commit comments

Comments
 (0)