Release v0.2.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4f76c28..c220ca1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Unreleased
 
+# 0.2.0 - 2019-02-15
+
+* Reduce features
+
+* Fix bugs
+
 # 0.1.0 - 2019-02-14
 
 Initial release
diff --git a/Cargo.toml b/Cargo.toml
index fb93bdd..a2b3cf3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "syn-mid"
 # NB: When modifying, also modify html_root_url in lib.rs
-version = "0.1.0"
+version = "0.2.0"
 authors = ["Taiki Endo <te316e89@gmail.com>"]
 license = "Apache-2.0/MIT"
 description = "Providing the features between \"full\" and \"derive\" of syn."
diff --git a/README.md b/README.md
index 6808ee6..43e89d8 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@
 
 ```toml
 [dependencies]
-syn-mid = "0.1"
+syn-mid = "0.2"
 ```
 
 The current version of syn-mid requires Rust 1.15 or later.
diff --git a/examples/const_fn/Cargo.toml b/examples/const_fn/Cargo.toml
index c2c1070..2ef2a30 100644
--- a/examples/const_fn/Cargo.toml
+++ b/examples/const_fn/Cargo.toml
@@ -12,4 +12,4 @@
 proc-macro2 = "0.4.19"
 quote = "0.6.8"
 syn = "0.15.22"
-syn-mid = { version = "0.1.0", path = "../.." }
+syn-mid = { version = "0.2", path = "../.." }
diff --git a/src/lib.rs b/src/lib.rs
index 44ffcc7..834f0c1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -34,7 +34,7 @@
 //! [syn]: https://github.com/dtolnay/syn
 //!
 
-#![doc(html_root_url = "https://docs.rs/syn-mid/0.1.0")]
+#![doc(html_root_url = "https://docs.rs/syn-mid/0.2.0")]
 #![deny(unsafe_code)]
 #![cfg_attr(
     feature = "cargo-clippy",