Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 19, 2017
1 parent 5450dc0 commit 8355779
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "0.2.0" # remember to update html_root_url
version = "0.2.1" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc-impl"
version = "0.2.0" # remember to update html_root_url
version = "0.2.1" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand Down
2 changes: 1 addition & 1 deletion impl/src/lib.rs
Expand Up @@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.0")]
#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.1")]

#![cfg_attr(feature = "unstable", feature(proc_macro))]

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -102,7 +102,7 @@
//! ") / ") /
//! ```

#![doc(html_root_url = "https://docs.rs/indoc/0.2.0")]
#![doc(html_root_url = "https://docs.rs/indoc/0.2.1")]

#![cfg_attr(feature = "unstable", feature(decl_macro, proc_macro, use_extern_macros))]

Expand Down
2 changes: 1 addition & 1 deletion unindent/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unindent"
version = "0.1.1" # remember to update html_root_url
version = "0.1.2" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Remove a column of leading whitespace from a string"
Expand Down
2 changes: 1 addition & 1 deletion unindent/src/lib.rs
Expand Up @@ -31,7 +31,7 @@
//! }
//! ```

#![doc(html_root_url = "https://docs.rs/unindent/0.1.1")]
#![doc(html_root_url = "https://docs.rs/unindent/0.1.2")]

#![cfg_attr(feature = "cargo-clippy", allow(type_complexity))]

Expand Down

0 comments on commit 8355779

Please sign in to comment.