Skip to content

Commit 3423187

Browse files
committed
Bump to 0.2.0
1 parent 15cc498 commit 3423187

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proc-macro2"
3-
version = "0.1.10" # remember to update html_root_url
3+
version = "0.2.0" # remember to update html_root_url
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ itself. Usage is done via:
2727

2828
```toml
2929
[dependencies]
30-
proc-macro2 = "0.1"
30+
proc-macro2 = "0.2"
3131
```
3232

3333
followed by
@@ -57,7 +57,7 @@ You can enable this feature via:
5757

5858
```toml
5959
[dependencies]
60-
proc-macro2 = { version = "0.1", features = ["nightly"] }
60+
proc-macro2 = { version = "0.2", features = ["nightly"] }
6161
```
6262

6363

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//! around preserving span information.
2121
2222
// Proc-macro2 types in rustdoc of other crates get linked to here.
23-
#![doc(html_root_url = "https://docs.rs/proc-macro2/0.1.10")]
23+
#![doc(html_root_url = "https://docs.rs/proc-macro2/0.2.0")]
2424

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

0 commit comments

Comments
 (0)