Skip to content

Commit

Permalink
Bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 8, 2018
1 parent 15cc498 commit 3423187
Show file tree
Hide file tree
Showing 3 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 = "proc-macro2"
version = "0.1.10" # remember to update html_root_url
version = "0.2.0" # remember to update html_root_url
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ itself. Usage is done via:

```toml
[dependencies]
proc-macro2 = "0.1"
proc-macro2 = "0.2"
```

followed by
Expand Down Expand Up @@ -57,7 +57,7 @@ You can enable this feature via:

```toml
[dependencies]
proc-macro2 = { version = "0.1", features = ["nightly"] }
proc-macro2 = { version = "0.2", features = ["nightly"] }
```


Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! around preserving span information.

// Proc-macro2 types in rustdoc of other crates get linked to here.
#![doc(html_root_url = "https://docs.rs/proc-macro2/0.1.10")]
#![doc(html_root_url = "https://docs.rs/proc-macro2/0.2.0")]

#![cfg_attr(feature = "nightly", feature(proc_macro))]

Expand Down

0 comments on commit 3423187

Please sign in to comment.