Prepare release of 0.28.0

This commit is contained in:
Tim Kuehn
2022-04-06 22:06:23 -07:00
parent b36eac80b1
commit a3a6404a30
5 changed files with 20 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ Some other features of tarpc:
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.27"
tarpc = "0.28"
```
The `tarpc::service` attribute expands to a collection of items that form an rpc service.
@@ -82,7 +82,7 @@ your `Cargo.toml`:
```toml
anyhow = "1.0"
futures = "0.3"
tarpc = { version = "0.27", features = ["tokio1"] }
tarpc = { version = "0.28", features = ["tokio1"] }
tokio = { version = "1.0", features = ["macros"] }
```

View File

@@ -1,3 +1,17 @@
## 0.28.0 (2022-04-06)
### Breaking Changes
- The minimum supported Rust version has increased to 1.58.0.
- The version of opentelemetry depended on by tarpc has increased to 0.17.0.
## 0.27.2 (2021-10-08)
### Fixes
Clients will now close their transport before dropping it. An attempt at a clean shutdown can help
the server drop its connections more quickly.
## 0.27.1 (2021-09-22)
### Breaking Changes

View File

@@ -21,7 +21,7 @@ futures = "0.3"
opentelemetry = { version = "0.16", features = ["rt-tokio"] }
opentelemetry-jaeger = { version = "0.15", features = ["rt-tokio"] }
rand = "0.8"
tarpc = { version = "0.27", path = "../tarpc", features = ["full"] }
tarpc = { version = "0.28", path = "../tarpc", features = ["full"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
tracing = { version = "0.1" }
tracing-opentelemetry = "0.15"

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.27.2"
version = "0.28.0"
rust-version = "1.58.0"
authors = [
"Adam Wright <adam.austin.wright@gmail.com>",

View File

@@ -54,7 +54,7 @@
//! Add to your `Cargo.toml` dependencies:
//!
//! ```toml
//! tarpc = "0.27"
//! tarpc = "0.28"
//! ```
//!
//! The `tarpc::service` attribute expands to a collection of items that form an rpc service.
@@ -69,7 +69,7 @@
//! ```toml
//! anyhow = "1.0"
//! futures = "0.3"
//! tarpc = { version = "0.27", features = ["tokio1"] }
//! tarpc = { version = "0.28", features = ["tokio1"] }
//! tokio = { version = "1.0", features = ["macros"] }
//! ```
//!