Skip to content

Commit 978e4f2

Browse files
authored
prepare actix-utils release 3.0.0 (#342)
1 parent 1c4e965 commit 978e4f2

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

actix-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ default = []
2323
[dependencies]
2424
actix-rt = { version = "2.0.0", default-features = false }
2525
actix-service = "2.0.0"
26-
actix-utils = "3.0.0-beta.4"
26+
actix-utils = "3.0.0"
2727

2828
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
2929
log = "0.4"

actix-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ authors = [
88
]
99
description = "Service trait and combinators for representing asynchronous request/response operations."
1010
keywords = ["network", "framework", "async", "futures", "service"]
11-
repository = "https://github.com/actix/actix-net"
1211
categories = ["network-programming", "asynchronous"]
12+
repository = "https://github.com/actix/actix-net"
1313
license = "MIT OR Apache-2.0"
1414
edition = "2018"
1515

@@ -24,5 +24,5 @@ pin-project-lite = "0.2"
2424

2525
[dev-dependencies]
2626
actix-rt = "2.0.0"
27-
actix-utils = "3.0.0-beta.4"
27+
actix-utils = "3.0.0"
2828
futures-util = { version = "0.3.7", default-features = false }

actix-tls/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ uri = ["http"]
4343
actix-codec = "0.4.0-beta.1"
4444
actix-rt = { version = "2.2.0", default-features = false }
4545
actix-service = "2.0.0"
46-
actix-utils = "3.0.0-beta.4"
46+
actix-utils = "3.0.0"
4747

4848
derive_more = "0.99.5"
4949
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }

actix-tracing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ path = "src/lib.rs"
1717

1818
[dependencies]
1919
actix-service = "2.0.0"
20-
actix-utils = "3.0.0-beta.4"
20+
actix-utils = "3.0.0"
2121

2222
tracing = "0.1"
2323
tracing-futures = "0.2"

actix-utils/CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
## Unreleased - 2021-xx-xx
44

55

6+
## 3.0.0 - 2021-04-16
7+
* No significant changes from `3.0.0-beta.4`.
8+
9+
610
## 3.0.0-beta.4 - 2021-04-01
711
* Add `future::Either` type. [#305]
812

actix-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "actix-utils"
3-
version = "3.0.0-beta.4"
3+
version = "3.0.0"
44
authors = [
55
"Nikolay Kim <[email protected]>",
66
"Rob Ede <[email protected]>",
77
]
8-
description = "Utilities for the Actix ecosystem"
8+
description = "Various utilities used in the Actix ecosystem"
99
keywords = ["network", "framework", "async", "futures"]
10-
repository = "https://github.com/actix/actix-net.git"
1110
categories = ["network-programming", "asynchronous"]
11+
repository = "https://github.com/actix/actix-net"
1212
license = "MIT OR Apache-2.0"
1313
edition = "2018"
1414

actix-utils/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Various utilities for the Actix ecosystem.
1+
//! Various utilities used in the Actix ecosystem.
22
33
#![deny(rust_2018_idioms, nonstandard_style)]
44
#![warn(missing_docs)]

0 commit comments

Comments
 (0)