docs+build: Prepare release of version 0.3.2
Change-Id: I43223e09c2201c7d3185a3d8929a691ae963c5d1
Refs: #2618
diff --git a/docs/RELEASE_NOTES.rst b/docs/RELEASE_NOTES.rst
index 8a8f976..f561988 100644
--- a/docs/RELEASE_NOTES.rst
+++ b/docs/RELEASE_NOTES.rst
@@ -3,6 +3,74 @@
NFD Release Notes
=================
+NFD version 0.3.2 (changes since version 0.3.1)
++++++++++++++++++++++++++++++++++++++++++++++++
+
+Release date: May 12, 2015
+
+New features:
+^^^^^^^^^^^^^
+
+- **Tables**
+
+ * Change lookup API to allow async implementations of ContentStore (:issue:`2411`)
+
+- **Management**
+
+ * Perform FIB updates before modifying RIB (:issue:`1941`)
+
+Updates and bug fixes:
+^^^^^^^^^^^^^^^^^^^^^^
+
+- **Documentation**
+
+ * Update planned Features: face enhancements (:issue:`2617`)
+
+ * Updated NFD's developer guide to reflect new changes and adding a new section on
+ NFD/ndn-cxx unit testing
+
+- **Face**
+
+ * Refactor channel acceptors to avoid use of shared pointers (:issue:`2613`)
+
+ * Refactor code to avoid deprecated `Block::fromBuffer` overloads (:issue:`2553`)
+
+ * Refactor code to use move semantics for sockets where possible (:issue:`2613`)
+
+ * Switch to non-throwing version of websocketpp APIs (:issue:`2630`)
+
+- **Forwarding**
+
+ * Extend measurements lifetime in AccessStrategy (:issue:`2452`)
+
+- **Management**
+
+ * Stop removed namespace from inheriting ancestor route (:issue:`2757`)
+
+ * Fix TestFibUpdates/EraseFace on Ubuntu 14.04 32-bit (:issue:`2697`)
+
+- **Tools**
+
+ * Fix hanging of `nfdc` on wrong input (:issue:`2690`)
+
+- **Build**
+
+ * Make build scripts compatible with Python 3 (:issue:`2625`)
+
+ * Get rid of the last use of ndn::dns in NFD (:issue:`2422`)
+
+ * Update waf build system to version 1.8.9 (:issue:`2209`, :issue:`2657`, :issue:`2792`)
+
+ * Tweak default pkg-config search paths (:issue:`2711`)
+
+ * Use C version of snprintf (:issue:`2299`)
+
+ * Emulate `std::to_string` when it is missing (:issue:`2299`)
+
+ * Fix several "defined but not used" warnings with gcc-5 (:issue:`2767`)
+
+****************************************************************************
+
NFD version 0.3.1 (changes since version 0.3.0)
-----------------------------------------------
diff --git a/wscript b/wscript
index 60bdb99..c1feff6 100644
--- a/wscript
+++ b/wscript
@@ -24,7 +24,7 @@
NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
"""
-VERSION = "0.3.1"
+VERSION = "0.3.2"
APPNAME = "nfd"
BUGREPORT = "http://redmine.named-data.net/projects/nfd"
URL = "http://named-data.net/doc/NFD/"