Skip to content

Commit df604e7

Browse files
committed
v0.1.1
1 parent 9871494 commit df604e7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_closure"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
license = "Apache-2.0"
55
authors = ["Alec Mocatta <[email protected]>"]
66
categories = ["development-tools","encoding","rust-patterns","network-programming"]
@@ -12,7 +12,7 @@ This library provides macros to wrap closures such that they can serialised and
1212
"""
1313
repository = "https://github.com/alecmocatta/serde_closure"
1414
homepage = "https://github.com/alecmocatta/serde_closure"
15-
documentation = "https://docs.rs/serde_closure/0.1.0"
15+
documentation = "https://docs.rs/serde_closure/0.1.1"
1616
readme = "README.md"
1717

1818
[badges]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Build Status](https://circleci.com/gh/alecmocatta/serde_closure/tree/master.svg?style=shield)](https://circleci.com/gh/alecmocatta/serde_closure)
77
[![Build Status](https://travis-ci.com/alecmocatta/serde_closure.svg?branch=master)](https://travis-ci.com/alecmocatta/serde_closure)
88

9-
[Docs](https://docs.rs/serde_closure/0.1.0)
9+
[Docs](https://docs.rs/serde_closure/0.1.1)
1010

1111
Serialisable closures.
1212

@@ -29,9 +29,9 @@ currently requires nightly Rust for the `unboxed_closures` and `fn_traits`
2929
features (rust issue [#29625](https://github.com/rust-lang/rust/issues/29625)).
3030

3131
* There are three macros,
32-
[FnOnce](https://docs.rs/serde_closure/0.1.0/serde_closure/macro.FnOnce.html),
33-
[FnMut](https://docs.rs/serde_closure/0.1.0/serde_closure/macro.FnMut.html) and
34-
[Fn](https://docs.rs/serde_closure/0.1.0/serde_closure/macro.Fn.html),
32+
[FnOnce](https://docs.rs/serde_closure/0.1.1/serde_closure/macro.FnOnce.html),
33+
[FnMut](https://docs.rs/serde_closure/0.1.1/serde_closure/macro.FnMut.html) and
34+
[Fn](https://docs.rs/serde_closure/0.1.1/serde_closure/macro.Fn.html),
3535
corresponding to the three types of Rust closure.
3636
* The *captured variables*, i.e. those variables that are referenced by the
3737
closure but are declared outside of it, must be explicitly listed.

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
//! longer be used (i.e. `|&a:&i32|0` will not work).
192192
//! * The `move` keyword must be present if any variables are captured.
193193
194-
#![doc(html_root_url = "https://docs.rs/serde_closure/0.1.0")]
194+
#![doc(html_root_url = "https://docs.rs/serde_closure/0.1.1")]
195195
#![feature(
196196
unboxed_closures,
197197
fn_traits,

0 commit comments

Comments
 (0)