From 650dc88da51adc39a79f6f5226d5d2e5454915d6 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Sun, 17 Sep 2017 16:02:28 -0700 Subject: [PATCH] Bump versions --- Cargo.toml | 4 ++-- README.md | 4 ++-- RELEASES.md | 5 +++++ src/plugins/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 35462c2..741a492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc" -version = "0.8.0" +version = "0.9.0" authors = ["Adam Wright ", "Tim Kuehn "] license = "MIT" documentation = "https://docs.rs/tarpc" @@ -26,7 +26,7 @@ net2 = "0.2" num_cpus = "1.0" serde = "1.0" serde_derive = "1.0" -tarpc-plugins = { path = "src/plugins", version = "0.1.1" } +tarpc-plugins = { path = "src/plugins", version = "0.2.0" } thread-pool = "0.1.1" tokio-core = "0.1.6" tokio-io = "0.1" diff --git a/README.md b/README.md index 057fde4..258cdca 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,8 @@ arguments to tarpc fns. Add to your `Cargo.toml` dependencies: ```toml -tarpc = "0.8.0" -tarpc-plugins = "0.1.1" +tarpc = "0.9.0" +tarpc-plugins = "0.2.0" ``` ## Example: Sync diff --git a/RELEASES.md b/RELEASES.md index 11c0093..6ed1ae5 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,8 @@ +## 0.9.0 (2017-09-17) + +## Breaking Changes +Updates tarpc to use tarpc-plugins 0.2. + ## 0.8.0 (2017-05-05) ## Breaking Changes diff --git a/src/plugins/Cargo.toml b/src/plugins/Cargo.toml index 81c59d9..7f901b7 100644 --- a/src/plugins/Cargo.toml +++ b/src/plugins/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tarpc-plugins" -version = "0.1.1" +version = "0.2.0" authors = ["Adam Wright ", "Tim Kuehn "] license = "MIT" documentation = "https://docs.rs/tarpc"