Skip to content
This repository was archived by the owner on Oct 18, 2022. It is now read-only.

Commit 477b698

Browse files
Release 0.11.0
1 parent 6a31b2b commit 477b698

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
No changes.
6+
7+
## 0.11.0 - 2018-02-25
8+
59
### Breaking Changes
610

711
* `Transport` errors must now be `Send + Sync`; this allows our own `Error` type to be `Send + Sync`, which makes it more useful for downstream crates (see: [API guidelines][c-good-err]) ([#39](https://github.com/jonas-schievink/xml-rpc-rs/pull/39))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = ["network-programming", "encoding"]
88
readme = "README.md"
99
license = "CC0-1.0"
1010
name = "xmlrpc"
11-
version = "0.10.0"
11+
version = "0.11.0"
1212

1313
[dependencies]
1414
base64 = "0.9.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Start by adding an entry to your `Cargo.toml`:
1414

1515
```toml
1616
[dependencies]
17-
xmlrpc = "0.10.0"
17+
xmlrpc = "0.11.0"
1818
```
1919

2020
Then import the crate into your Rust code:

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! [XML-RPC specification]: http://xmlrpc.scripting.com/spec.html
66
7-
#![doc(html_root_url = "https://docs.rs/xmlrpc/0.10.0")]
7+
#![doc(html_root_url = "https://docs.rs/xmlrpc/0.11.0")]
88
#![warn(missing_debug_implementations)]
99

1010
extern crate base64;

0 commit comments

Comments
 (0)