Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda committed Jul 31, 2024
1 parent 5bf0d9e commit d7bd17b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 20 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.7.0]

### Added

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

- Initial commit.

[Unreleased]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.6.0...main
[Unreleased]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.7.0...main
[0.7.0]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.2...v0.6.0
[0.5.2]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/daxpedda/axum-server-dual-protocol/compare/v0.5.0...v0.5.1
Expand Down
5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ license = "MIT OR Apache-2.0"
name = "axum-server-dual-protocol"
repository = "https://github.com/daxpedda/axum-server-dual-protocol"
rust-version = "1.66"
version = "0.6.0"
version = "0.7.0"

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

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

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

[[test]]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,20 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
additional terms or conditions.

[CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/CHANGELOG.md
[LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-MIT
[LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-APACHE
[CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/CHANGELOG.md
[LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-MIT
[LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-APACHE
[`aws-lc-rs`]: https://docs.rs/aws-lc-rs/1
[`axum`]: https://docs.rs/axum/0.7
[`axum-server`]: https://docs.rs/axum-server/0.7.0
[`bind_dual_protocol()`]:
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/fn.bind_dual_protocol.html
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/fn.bind_dual_protocol.html
[`CryptoProvider`]: https://docs.rs/rustls/0.23/rustls/crypto/struct.CryptoProvider.html
[`hyper`]: https://docs.rs/hyper/1
[`Layer`]: https://docs.rs/tower-layer/0.3/tower_layer/trait.Layer.html
[`Router`]: https://docs.rs/axum/0.7/axum/struct.Router.html
[`ServerExt::set_upgrade()`]:
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/trait.ServerExt.html#tymethod.set_upgrade
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/trait.ServerExt.html#tymethod.set_upgrade
[`tower`]: https://docs.rs/tower/0.4
[`UpgradeHttpLayer`]:
https://docs.rs/axum-server-dual-protocol/0.6.0/axum_server_dual_protocol/struct.UpgradeHttpLayer.html
https://docs.rs/axum-server-dual-protocol/0.7.0/axum_server_dual_protocol/struct.UpgradeHttpLayer.html
6 changes: 0 additions & 6 deletions minimal-versions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,5 @@ version = "0.0.0"

[dependencies]
axum-server-dual-protocol = { path = ".." }
# `axum-server` v0.7.0 incorrectly only requires `hyper-util` v0.1
hyper-util = "0.1.2"
# `tower` v0.4.0 incorrectly only requires `tower-layer` v0.3.0
tower-layer = "0.3.1"

[patch.crates-io]
axum-server = { git = "https://github.com/daxpedda/axum-server", branch = "crypto-provider" }
rcgen = { git = "https://github.com/daxpedda/rcgen", branch = "aws-lc-rs-default-features" }
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@
//! license, shall be dual licensed as above, without any additional terms or
//! conditions.
//!
//! [CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/CHANGELOG.md
//! [LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-MIT
//! [LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.6.0/LICENSE-APACHE
//! [CHANGELOG]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/CHANGELOG.md
//! [LICENSE-MIT]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-MIT
//! [LICENSE-APACHE]: https://github.com/daxpedda/axum-server-dual-protocol/blob/v0.7.0/LICENSE-APACHE
//! [`aws-lc-rs`]: https://docs.rs/aws-lc-rs/1
//! [`axum`]: https://docs.rs/axum/0.7
//! [`CryptoProvider`]: tokio_rustls::rustls::crypto::CryptoProvider
Expand Down

0 comments on commit d7bd17b

Please sign in to comment.