Merge pull request #33 from tikue/bump-version

Bump version to v0.5.0
This commit is contained in:
shaladdle
2016-04-24 19:37:04 -07:00
3 changed files with 10 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ function then returns the value produced by that other server.
Add to your `Cargo.toml` dependencies:
```toml
tarpc = "0.4.0"
tarpc = "0.5.0"
```
## Example

View File

@@ -1,3 +1,11 @@
## 0.5 (2016-04-24)
0.5 adds support for arbitrary transports via the
[`Transport`](tarpc/src/transport/mod.rs#L7) trait.
Out of the box tarpc provides implementations for:
* Tcp, for types `impl`ing `ToSocketAddrs`.
* Unix sockets via the `UnixTransport` type.
## 0.4 (2016-04-02)
### Breaking Changes

View File

@@ -1,6 +1,6 @@
[package]
name = "tarpc"
version = "0.4.0"
version = "0.5.0"
authors = ["Adam Wright <adam.austin.wright@gmail.com>", "Tim Kuehn <timothy.j.kuehn@gmail.com>"]
license = "MIT"
documentation = "https://google.github.io/tarpc"