0.4.8
diff --git a/Cargo.toml b/Cargo.toml
index 28380d1..e32aed8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 
 name = "petgraph"
-version = "0.4.7"
+version = "0.4.8"
 license = "MIT/Apache-2.0"
 authors = [
 "bluss",
diff --git a/README.rst b/README.rst
index 9cac925..1ca929e 100644
--- a/README.rst
+++ b/README.rst
@@ -26,6 +26,24 @@
 Recent Changes
 --------------
 
+- 0.4.8
+
+  - ``StableGraph`` learned new methods nearing parity with ``Graph``.  Note
+    that the ``StableGraph`` methods preserve index stability even in the batch
+    removal methods like ``filter_map`` and ``retain_edges``.
+
+    + Added ``.filter_map()``, which maps associated node and edge data
+    + Added ``.retain_edges()``, ``.edge_indices()`` and ``.clear_edges()``
+
+  - Existing ``Graph`` iterators gained some trait impls:
+
+    + ``.node_indices(), .edge_indices()`` are ``ExactSizeIterator``
+    + ``.node_references()`` is now
+      ``DoubleEndedIterator + ExactSizeIterator``.
+    + ``.edge_references()`` is now ``ExactSizeIterator``.
+
+  - Implemented ``From<StableGraph>`` for ``Graph``.
+
 - 0.4.7
 
   - New algorithm by @jmcomets: A* search algorithm in ``petgraph::algo::astar``