Release v0.3.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c220ca1..c7ea1ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Unreleased
 
+# 0.3.0 - 2019-02-18
+
+* Remove support for unneeded syntax
+
+* Remove unneeded types and fields
+
+* impl Parse for Block
+
+* Change clone-impls feature to "disabled by default"
+
+* Remove extra-traits feature
+
+* Bump the minimum required version from Rust 1.15 to Rust 1.30
+
 # 0.2.0 - 2019-02-15
 
 * Reduce features
diff --git a/Cargo.toml b/Cargo.toml
index 04b2fb8..5d5e64a 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.2.0"
+version = "0.3.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 ff95642..0870f88 100644
--- a/README.md
+++ b/README.md
@@ -34,7 +34,7 @@
 
 ```toml
 [dependencies]
-syn-mid = "0.2"
+syn-mid = "0.3"
 ```
 
 The current version of syn-mid requires Rust 1.30 or later.
diff --git a/examples/const_fn/Cargo.toml b/examples/const_fn/Cargo.toml
index 3054902..88ffe4b 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.2", path = "../..", features = ["clone-impls"] }
+syn-mid = { version = "0.3", path = "../..", features = ["clone-impls"] }
diff --git a/src/lib.rs b/src/lib.rs
index 3acf933..044e790 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -31,7 +31,7 @@
 //! [syn]: https://github.com/dtolnay/syn
 //!
 
-#![doc(html_root_url = "https://docs.rs/syn-mid/0.2.0")]
+#![doc(html_root_url = "https://docs.rs/syn-mid/0.3.0")]
 #![deny(unsafe_code)]
 #![deny(bare_trait_objects, elided_lifetimes_in_paths)]
 #![deny(unreachable_pub)]