Skip to content

Commit 1c4e965

Browse files
authored
prepare service release 2.0.0 (#339)
1 parent 2435520 commit 1c4e965

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

actix-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default = []
2222

2323
[dependencies]
2424
actix-rt = { version = "2.0.0", default-features = false }
25-
actix-service = "2.0.0-beta.5"
25+
actix-service = "2.0.0"
2626
actix-utils = "3.0.0-beta.4"
2727

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

actix-service/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changes
22

33
## Unreleased - 2021-xx-xx
4+
5+
6+
## 2.0.0 - 2021-04-16
47
* Removed pipeline and related structs/functions. [#335]
58

69
[#335]: https://github.com/actix/actix-net/pull/335

actix-service/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
[package]
22
name = "actix-service"
3-
version = "2.0.0-beta.5"
3+
version = "2.0.0"
44
authors = [
55
"Nikolay Kim <[email protected]>",
66
"Rob Ede <[email protected]>",
77
"fakeshadow <[email protected]>",
88
]
99
description = "Service trait and combinators for representing asynchronous request/response operations."
1010
keywords = ["network", "framework", "async", "futures", "service"]
11-
homepage = "https://actix.rs"
12-
repository = "https://github.com/actix/actix-net.git"
13-
documentation = "https://docs.rs/actix-service"
14-
readme = "README.md"
11+
repository = "https://github.com/actix/actix-net"
1512
categories = ["network-programming", "asynchronous"]
1613
license = "MIT OR Apache-2.0"
1714
edition = "2018"

actix-service/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
> Service trait and combinators for representing asynchronous request/response operations.
44
55
[![crates.io](https://img.shields.io/crates/v/actix-service?label=latest)](https://crates.io/crates/actix-service)
6-
[![Documentation](https://docs.rs/actix-service/badge.svg?version=2.0.0-beta.5)](https://docs.rs/actix-service/2.0.0-beta.5)
6+
[![Documentation](https://docs.rs/actix-service/badge.svg?version=2.0.0)](https://docs.rs/actix-service/2.0.0)
77
[![Version](https://img.shields.io/badge/rustc-1.46+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.46.html)
88
![License](https://img.shields.io/crates/l/actix-service.svg)
9-
[![Dependency Status](https://deps.rs/crate/actix-service/2.0.0-beta.5/status.svg)](https://deps.rs/crate/actix-service/2.0.0-beta.5)
9+
[![Dependency Status](https://deps.rs/crate/actix-service/2.0.0/status.svg)](https://deps.rs/crate/actix-service/2.0.0)
1010
![Download](https://img.shields.io/crates/d/actix-service.svg)
1111
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
1212

actix-tls/Cargo.toml

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

4848
derive_more = "0.99.5"

actix-tracing/Cargo.toml

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

1818
[dependencies]
19-
actix-service = "2.0.0-beta.5"
19+
actix-service = "2.0.0"
2020
actix-utils = "3.0.0-beta.4"
2121

2222
tracing = "0.1"

0 commit comments

Comments
 (0)