0.4.7
diff --git a/Cargo.toml b/Cargo.toml
index 635dde9..28380d1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 
 name = "petgraph"
-version = "0.4.7-pre"
+version = "0.4.7"
 license = "MIT/Apache-2.0"
 authors = [
 "bluss",
@@ -56,3 +56,6 @@
 
 [package.metadata.docs.rs]
 features = ["serde-1", "quickcheck"]
+
+[package.metadata.release]
+no-dev-version = true
diff --git a/README.rst b/README.rst
index 5231e20..23670d6 100644
--- a/README.rst
+++ b/README.rst
@@ -26,6 +26,14 @@
 Recent Changes
 --------------
 
+- 0.4.7
+
+  - New algorithm by @jmcomets: A* search algorithm in ``petgraph::algo::astar``
+  - One ``StableGraph`` bug fix whose patch was supposed to be in the previous
+    version:
+    + ``add_edge(m, n, _)`` now properly always panics if nodes m or n don't
+      exist in the graph.
+
 - 0.4.6
 
   - New optional crate feature: ``"serde-1"``, which enables serialization
@@ -41,8 +49,6 @@
   - Many ``StableGraph`` bug fixes involving node vacancies (holes left by
     deletions):
 
-    + ``add_edge(m, n, _)`` now properly panics if nodes m or n don't exist in
-      the graph.
     + ``neighbors(n)`` and similar neighbor and edge iterator methods now
       handle n being a vacancy properly. (This produces an empty iterator.)
     + ``find_edge(m, n)`` now handles m being a vacancy correctly too