Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.26.0 #132

Merged
merged 2 commits into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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).

## [0.26.0] - 2024-06-02
### Changed
- Update to tungstenite 0.23.
- Don't include default features for various dependencies.

## [0.25.1] - 2024-04-03
### Fixed
- Fix tokio support for async-tls.
Expand Down Expand Up @@ -181,7 +186,11 @@ No changelog is available for older versions as of yet.
-->


[Unreleased]: https://github.com/sdroege/async-tungstenite/compare/0.23.0...HEAD
[Unreleased]: https://github.com/sdroege/async-tungstenite/compare/0.26.0...HEAD
[0.26.0]: https://github.com/sdroege/async-tungstenite/compare/0.26.0...0.25.1
[0.25.1]: https://github.com/sdroege/async-tungstenite/compare/0.25.1...0.25.0
[0.25.0]: https://github.com/sdroege/async-tungstenite/compare/0.25.0...0.24.0
[0.24.0]: https://github.com/sdroege/async-tungstenite/compare/0.24.0...0.23.0
[0.23.0]: https://github.com/sdroege/async-tungstenite/compare/0.23.0...0.22.2
[0.22.2]: https://github.com/sdroege/async-tungstenite/compare/0.22.2...0.22.1
[0.22.1]: https://github.com/sdroege/async-tungstenite/compare/0.22.1...0.22.0
Expand Down
12 changes: 10 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "MIT"
homepage = "https://github.com/sdroege/async-tungstenite"
repository = "https://github.com/sdroege/async-tungstenite"
documentation = "https://docs.rs/async-tungstenite"
version = "0.25.1"
version = "0.26.0"
edition = "2018"
readme = "README.md"
include = ["examples/**/*", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
Expand Down Expand Up @@ -41,7 +41,7 @@ futures-io = { version = "0.3", default-features = false, features = ["std"] }
pin-project-lite = "0.2"

[dependencies.tungstenite]
version = "0.21"
version = "0.23"
default-features = false

[dependencies.async-std]
Expand All @@ -61,6 +61,8 @@ version = "0.10"
optional = true
version = "0.13"
package = "async-tls"
default-features = false
features = ["client"]

[dependencies.real-async-native-tls]
optional = true
Expand All @@ -76,6 +78,7 @@ package = "native-tls"
optional = true
version = "1.0"
features = ["net"]
default-features = false

[dependencies.real-tokio-native-tls]
optional = true
Expand All @@ -86,6 +89,7 @@ package = "tokio-native-tls"
optional = true
version = "0.26"
package = "tokio-rustls"
default-features = false

[dependencies.rustls-pki-types]
optional = true
Expand Down Expand Up @@ -118,6 +122,10 @@ hyper = { version = "1.0", default-features = false, features = ["http1", "serve
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"

[dev-dependencies.tungstenite]
version = "0.23"
features = ["url"]

[[example]]
name = "autobahn-client"
required-features = ["async-std-runtime"]
Expand Down
Loading