Skip to content

Commit

Permalink
Release 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jul 15, 2023
1 parent 95ba834 commit a92f59e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "2.0.2"
version = "2.0.3"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns", "text-processing", "no-std", "no-std::no-alloc"]
description = "Indented document literals"
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.2")]
#![doc(html_root_url = "https://docs.rs/indoc/2.0.3")]
#![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.1" # remember to update html_root_url
version = "0.2.2" # 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.1")]
#![doc(html_root_url = "https://docs.rs/unindent/0.2.2")]
#![allow(
clippy::missing_panics_doc,
clippy::module_name_repetitions,
Expand Down

0 comments on commit a92f59e

Please sign in to comment.