Skip to content

Commit

Permalink
Release 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Sep 16, 2023
1 parent efe9378 commit 784e9b2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "2.0.3"
version = "2.0.4"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns", "text-processing", "no-std", "no-std::no-alloc"]
description = "Indented document literals"
Expand All @@ -18,7 +18,7 @@ doc-scrape-examples = false
[dev-dependencies]
rustversion = "1.0"
trybuild = { version = "1.0.49", features = ["diff"] }
unindent = { version = "0.2", path = "unindent" }
unindent = { version = "0.2.3", path = "unindent" }

[workspace]
members = ["unindent"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -121,7 +121,7 @@
//! the first line.
//! 4. Remove the computed number of spaces from the beginning of each line.

#![doc(html_root_url = "https://docs.rs/indoc/2.0.3")]
#![doc(html_root_url = "https://docs.rs/indoc/2.0.4")]
#![allow(
clippy::derive_partial_eq_without_eq,
clippy::from_iter_instead_of_collect,
Expand Down
2 changes: 1 addition & 1 deletion unindent/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unindent"
version = "0.2.2" # remember to update html_root_url
version = "0.2.3" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["text-processing"]
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.2.2")]
#![doc(html_root_url = "https://docs.rs/unindent/0.2.3")]
#![allow(
clippy::missing_panics_doc,
clippy::module_name_repetitions,
Expand Down

0 comments on commit 784e9b2

Please sign in to comment.