Bump to 0.2.0
diff --git a/Cargo.toml b/Cargo.toml
index f6ca9c6..476103d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/README.md b/README.md
index 576da8d..c0a62a3 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@
```toml
[dependencies]
-proc-macro2 = "0.1"
+proc-macro2 = "0.2"
```
followed by
@@ -57,7 +57,7 @@
```toml
[dependencies]
-proc-macro2 = { version = "0.1", features = ["nightly"] }
+proc-macro2 = { version = "0.2", features = ["nightly"] }
```
diff --git a/src/lib.rs b/src/lib.rs
index 87708ee..0bf8664 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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))]