Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 30, 2018
1 parent a150e9f commit 97a5215
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "0.3.0" # remember to update html_root_url
version = "0.3.1" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indoc-impl"
version = "0.3.0" # remember to update html_root_url
version = "0.3.1" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand Down
2 changes: 1 addition & 1 deletion impl/src/lib.rs
Original file line number Diff line number Diff line change
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.3.0")]
#![doc(html_root_url = "https://docs.rs/indoc-impl/0.3.1")]

extern crate proc_macro;

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
//! ") / ") /
//! ```
#![doc(html_root_url = "https://docs.rs/indoc/0.3.0")]
#![doc(html_root_url = "https://docs.rs/indoc/0.3.1")]
#![cfg_attr(feature = "unstable", feature(decl_macro))]
#![cfg_attr(feature = "cargo-clippy", allow(useless_attribute))]
#![no_std]
Expand Down

0 comments on commit 97a5215

Please sign in to comment.