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

Commit

Permalink
Release 0.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-schievink committed Nov 2, 2021
1 parent 74499be commit 9c197d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

No changes.

## 0.15.1 - 2021-11-02

### New Features

- Added `From<Option<_>>` impls for `Value`, yielding either `Nil` or the contained value ([#76])
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ categories = ["network-programming", "encoding"]
readme = "README.md"
license = "CC0-1.0"
name = "xmlrpc"
version = "0.15.0"
version = "0.15.1"

# cargo-release configuration
[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Start by adding an entry to your `Cargo.toml`:

```toml
[dependencies]
xmlrpc = "0.15.0"
xmlrpc = "0.15.1"
```

Then import the crate into your Rust code:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//!
//! [XML-RPC specification]: http://xmlrpc.scripting.com/spec.html
#![doc(html_root_url = "https://docs.rs/xmlrpc/0.15.0")]
#![doc(html_root_url = "https://docs.rs/xmlrpc/0.15.1")]
#![warn(missing_debug_implementations)]
#![warn(rust_2018_idioms)]
#![warn(missing_docs)]
Expand Down

0 comments on commit 9c197d9

Please sign in to comment.