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

Commit 9c197d9

Browse files
Release 0.15.1
1 parent 74499be commit 9c197d9

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
No changes.
6+
7+
## 0.15.1 - 2021-11-02
8+
59
### New Features
610

711
- Added `From<Option<_>>` impls for `Value`, yielding either `Nil` or the contained value ([#76])

Cargo.toml

+1-1
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.15.0"
11+
version = "0.15.1"
1212

1313
# cargo-release configuration
1414
[package.metadata.release]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Start by adding an entry to your `Cargo.toml`:
2121

2222
```toml
2323
[dependencies]
24-
xmlrpc = "0.15.0"
24+
xmlrpc = "0.15.1"
2525
```
2626

2727
Then import the crate into your Rust code:

src/lib.rs

+1-1
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.15.0")]
7+
#![doc(html_root_url = "https://docs.rs/xmlrpc/0.15.1")]
88
#![warn(missing_debug_implementations)]
99
#![warn(rust_2018_idioms)]
1010
#![warn(missing_docs)]

0 commit comments

Comments
 (0)