diff --git a/README.md b/README.md index 2d0cdd5..ea363d2 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ Some other features of tarpc: Add to your `Cargo.toml` dependencies: ```toml -tarpc = "0.30" +tarpc = "0.31" ``` 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.30", features = ["tokio1"] } +tarpc = { version = "0.31", features = ["tokio1"] } tokio = { version = "1.0", features = ["macros"] } ``` diff --git a/RELEASES.md b/RELEASES.md index d6e6344..a6ce438 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,10 @@ +## 0.31.0 (2022-11-03) + +### New Features + +This release adds Unix Domain Sockets to the `serde_transport` module. +To use it, enable the "unix" feature. See the docs for more information. + ## 0.30.0 (2022-08-12) ### Breaking Changes diff --git a/example-service/Cargo.toml b/example-service/Cargo.toml index 6f162d2..e760111 100644 --- a/example-service/Cargo.toml +++ b/example-service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-example-service" -version = "0.12.0" +version = "0.13.0" rust-version = "1.56" authors = ["Tim Kuehn "] edition = "2021" @@ -21,7 +21,7 @@ futures = "0.3" opentelemetry = { version = "0.17", features = ["rt-tokio"] } opentelemetry-jaeger = { version = "0.16", features = ["rt-tokio"] } rand = "0.8" -tarpc = { version = "0.30", path = "../tarpc", features = ["full"] } +tarpc = { version = "0.31", path = "../tarpc", features = ["full"] } tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] } tracing = { version = "0.1" } tracing-opentelemetry = "0.17" diff --git a/tarpc/Cargo.toml b/tarpc/Cargo.toml index b2f037b..ff0f59b 100644 --- a/tarpc/Cargo.toml +++ b/tarpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc" -version = "0.30.0" +version = "0.31.0" rust-version = "1.58.0" authors = [ "Adam Wright ", @@ -13,7 +13,7 @@ homepage = "https://github.com/google/tarpc" repository = "https://github.com/google/tarpc" keywords = ["rpc", "network", "server", "api", "microservices"] categories = ["asynchronous", "network-programming"] -readme = "../README.md" +readme = "README.md" description = "An RPC framework for Rust with a focus on ease of use." [features]