Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed May 7, 2022
1 parent 2a167d0 commit 60ba4fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "1.0.5"
version = "1.0.6"
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Indented document literals"
Expand All @@ -17,7 +17,7 @@ proc-macro = true
[dev-dependencies]
rustversion = "1.0"
trybuild = { version = "1.0.49", features = ["diff"] }
unindent = { version = "0.1.8", path = "unindent" }
unindent = { version = "0.1.9", path = "unindent" }

[workspace]
members = ["unindent"]
Expand Down
2 changes: 1 addition & 1 deletion unindent/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unindent"
version = "0.1.8" # remember to update html_root_url
version = "0.1.9" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT OR 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 @@ -45,7 +45,7 @@
//! }
//! ```

#![doc(html_root_url = "https://docs.rs/unindent/0.1.8")]
#![doc(html_root_url = "https://docs.rs/unindent/0.1.9")]
#![allow(
clippy::missing_panics_doc,
clippy::module_name_repetitions,
Expand Down

0 comments on commit 60ba4fb

Please sign in to comment.