Skip to content

Commit

Permalink
Release 2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Mar 3, 2025
1 parent 382de61 commit f5934e4
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 = "2.0.5"
version = "2.0.6"
authors = ["David Tolnay <[email protected]>"]
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
Original file line number Diff line number Diff line change
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.5")]
#![doc(html_root_url = "https://docs.rs/indoc/2.0.6")]
#![allow(
clippy::derive_partial_eq_without_eq,
clippy::from_iter_instead_of_collect,
Expand Down
2 changes: 1 addition & 1 deletion unindent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unindent"
version = "0.2.3"
version = "0.2.4"
authors = ["David Tolnay <[email protected]>"]
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/unindent/0.2.3")]
#![doc(html_root_url = "https://docs.rs/unindent/0.2.4")]
#![allow(
clippy::missing_panics_doc,
clippy::module_name_repetitions,
Expand Down

0 comments on commit f5934e4

Please sign in to comment.