Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Nov 29, 2018
1 parent 5017e59 commit 4a2c661
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indoc"
version = "0.2.8" # remember to update html_root_url
version = "0.3.0" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand All @@ -13,7 +13,7 @@ readme = "README.md"
unstable = ["indoc-impl/unstable"]

[dependencies]
indoc-impl = { version = "0.2", path = "impl" }
indoc-impl = { version = "0.3", path = "impl" }
proc-macro-hack = "0.5"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ leftmost non-space character is in the first column.

```toml
[dependencies]
indoc = "0.2"
indoc = "0.3"
```

Release notes are available under [GitHub releases](https://github.com/dtolnay/indoc/releases).
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indoc-impl"
version = "0.2.8" # remember to update html_root_url
version = "0.3.0" # remember to update html_root_url
authors = ["David Tolnay <[email protected]>"]
license = "MIT/Apache-2.0"
description = "Indented document literals"
Expand Down
2 changes: 1 addition & 1 deletion impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![doc(html_root_url = "https://docs.rs/indoc-impl/0.2.8")]
#![doc(html_root_url = "https://docs.rs/indoc-impl/0.3.0")]

extern crate proc_macro;

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ```toml
//! [dependencies]
//! indoc = "0.2"
//! indoc = "0.3"
//! ```
//!
//! Release notes are available under [GitHub releases](https://github.com/dtolnay/indoc/releases).
Expand Down Expand Up @@ -108,7 +108,7 @@
//! ") / ") /
//! ```
#![doc(html_root_url = "https://docs.rs/indoc/0.2.8")]
#![doc(html_root_url = "https://docs.rs/indoc/0.3.0")]
#![cfg_attr(feature = "unstable", feature(decl_macro))]
#![cfg_attr(feature = "cargo-clippy", allow(useless_attribute))]
#![no_std]
Expand Down

0 comments on commit 4a2c661

Please sign in to comment.