Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 29, 2023
1 parent 24a804e commit bbbec14
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "1.0.9"
version = "2.0.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["rust-patterns", "text-processing", "no-std"]
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.1.9", path = "unindent" }
unindent = { version = "0.2", path = "unindent" }

[workspace]
members = ["unindent"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ time so the leftmost non-space character is in the first column.

```toml
[dependencies]
indoc = "1.0"
indoc = "2"
```

*Compiler requirement: rustc 1.56 or greater.*
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! indoc = "1.0"
//! indoc = "2"
//! ```
//!
//! <br>
Expand Down
2 changes: 1 addition & 1 deletion unindent/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "unindent"
version = "0.1.11" # remember to update html_root_url
version = "0.2.0" # 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.1.11")]
#![doc(html_root_url = "https://docs.rs/unindent/0.2.0")]
#![allow(
clippy::missing_panics_doc,
clippy::module_name_repetitions,
Expand Down

0 comments on commit bbbec14

Please sign in to comment.