Prepare release of v0.23.0

This commit is contained in:
Tim Kuehn
2020-10-19 11:12:43 -07:00
parent a3f1064efe
commit b9868250f8
5 changed files with 10 additions and 4 deletions

View File

@@ -59,7 +59,7 @@ Some other features of tarpc:
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.22.0"
tarpc = "0.23.0"
```
The `tarpc::service` attribute expands to a collection of items that form an rpc service.

View File

@@ -1,3 +1,9 @@
## 0.23.0 (2020-10-19)
### Breaking Changes
Upgrades tokio to 0.3.
## 0.22.0 (2020-08-02)
This release adds some flexibility and consistency to `serde_transport`, with one new feature and

View File

@@ -17,7 +17,7 @@ clap = "2.33"
env_logger = "0.8"
futures = "0.3"
serde = { version = "1.0" }
tarpc = { version = "0.22", path = "../tarpc", features = ["full"] }
tarpc = { version = "0.23", path = "../tarpc", features = ["full"] }
tokio = { version = "0.3", features = ["full"] }
tokio-serde = { version = "0.6", features = ["json"] }
tokio-util = { version = "0.4", features = ["codec"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.22.0"
version = "0.23.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
edition = "2018"
license = "MIT"

View File

@@ -47,7 +47,7 @@
//! Add to your `Cargo.toml` dependencies:
//!
//! ```toml
//! tarpc = "0.22.0"
//! tarpc = "0.23.0"
//! ```
//!
//! The `tarpc::service` attribute expands to a collection of items that form an rpc service.