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

Bump actix-codec version, Reexport ConnectionIo #2436

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Unreleased - 2021-xx-xx
### Changed
* `ContentType::html` now returns `Content-Type: text/html; charset=utf-8` instead of `Content-Type: text/html`.

* Updated `actix-codec` to v0.4.1 [#2436]

## 4.0.0-beta.10 - 2021-10-20
### Added
Expand Down
3 changes: 2 additions & 1 deletion actix-test/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changes

## Unreleased - 2021-xx-xx

* Updated `actix-codec` to v0.4.1
[#2436]: https://github.com/actix/actix-web/pull/2436

## 0.1.0-beta.5 - 2021-10-20
* Updated rustls to v0.20. [#2414]
Expand Down
2 changes: 1 addition & 1 deletion actix-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rustls = ["tls-rustls", "actix-http/rustls", "awc/rustls"]
openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]

[dependencies]
actix-codec = "0.4.0"
actix-codec = "0.4.1"
actix-http = "3.0.0-beta.11"
actix-http-test = "3.0.0-beta.5"
actix-service = "2.0.0"
Expand Down
3 changes: 2 additions & 1 deletion actix-web-actors/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Unreleased - 2021-xx-xx
* Minimum supported Rust version (MSRV) is now 1.52.

* Updated `actix-codec` to v0.4.1
[#2436]: https://github.com/actix/actix-web/pull/2436

## 4.0.0-beta.7 - 2021-09-09
* Minimum supported Rust version (MSRV) is now 1.51.
Expand Down
2 changes: 1 addition & 1 deletion actix-web-actors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ path = "src/lib.rs"

[dependencies]
actix = { version = "0.12.0", default-features = false }
actix-codec = "0.4.0"
actix-codec = "0.4.1"
actix-http = "3.0.0-beta.11"
actix-web = { version = "4.0.0-beta.10", default-features = false }

Expand Down
4 changes: 3 additions & 1 deletion awc/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changes

## Unreleased - 2021-xx-xx

* Reexport ConnectionIo
* Bump `actix-codec` version to 0.4.1
[#2436]: https://github.com/actix/actix-web/pull/2436

## 3.0.0-beta.9 - 2021-10-20
* Updated rustls to v0.20. [#2414]
Expand Down
2 changes: 1 addition & 1 deletion awc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ trust-dns = ["trust-dns-resolver"]
__compress = []

[dependencies]
actix-codec = "0.4.0"
actix-codec = "0.4.1"
actix-service = "2.0.0"
actix-http = "3.0.0-beta.11"
actix-rt = { version = "2.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion awc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub use actix_http::http;
pub use cookie;

pub use self::builder::ClientBuilder;
pub use self::client::Connector;
pub use self::client::{ConnectionIo, Connector};
pub use self::connect::{BoxConnectorService, BoxedSocket, ConnectRequest, ConnectResponse};
pub use self::frozen::{FrozenClientRequest, FrozenSendBuilder};
pub use self::request::ClientRequest;
Expand Down