From 2fc649bfc67b93b4191cfbee5bcd70330bfb48f0 Mon Sep 17 00:00:00 2001 From: Alexander Afanasyev Date: Sun, 30 Aug 2015 23:20:27 -0700 Subject: [PATCH] docs+build: Prepare release of version 0.3.4 Change-Id: I7e0276ce210cf5322fd5f3195821b3edee74fc64 Refs: #3132 --- docs/RELEASE_NOTES.rst | 59 ++++++++++++++++++++++++++++++++++++++++++ wscript | 2 +- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/docs/RELEASE_NOTES.rst b/docs/RELEASE_NOTES.rst index 932589f9..fb459029 100644 --- a/docs/RELEASE_NOTES.rst +++ b/docs/RELEASE_NOTES.rst @@ -3,6 +3,65 @@ NFD Release Notes ================= +NFD version 0.3.4 (changes since version 0.3.3) ++++++++++++++++++++++++++++++++++++++++++++++++ + +Release date: August 31, 2015 + +New features: +^^^^^^^^^^^^^ + +- Boolean Face property IsOnDemand has been replaced with multistate FacePersistency + property (:issue:`2989`, :issue:`3018`): persistent (Face exists as long as there are no + system or socket errors), on-demand (Face is removed after inactivity period), and + permanent (Face exists unless explicitly destroyed by the management). + + Currently, only UDP faces are allowed to be permanent. However, management interface to + create UDP permanent faces or switch UDP to permanent state will be available in the + next release (:issue:`2991`). + +- Least Recently Used policy for Content Store (:issue:`2219`) + + Currently, changing the policy requires a minor change in NFD source code. + Configuration interface is coming in the next release (:issue:`3148`) + + +Updates and bug fixes: +^^^^^^^^^^^^^^^^^^^^^^ + +- Update of NDN Essential Tools to version 0.2 ``__ + with code improvements and the following new tools: + + * PIB service to manage the public information of keys and publish certificates + (:issue:`3018`) + * A Wireshark dissector for NDN packets (:issue:`3092`) + +- RibManager constructor now accepts KeyChain as a parameter, preparing it for simplifying + implementation with the new ``ndn::Dispatcher`` class (:issue:`2390`) + +- Fix HTML rendering of nfd-status-http-server output in some browsers (:issue:`3019`) + +- Enable automatic re-creation of multicast faces when network connectivity changes + (:issue:`2460`) + +- Enhance exception throwing with Boost Exception library (:issue:`2541`) + +Deprecated: +^^^^^^^^^^^ + +- BroadcastStrategy (``/localhost/nfd/strategy/broadcast``) renamed as MulticastStrategy + (``/localhost/nfd/strategy/multicast``) (:issue:`3011`) + +Upcoming features (partially finished in development branches): +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- NDNLPv2 (http://redmine.named-data.net/projects/nfd/wiki/NDNLPv2, :issue:`2520`, + :issue:`2879`, :issue:`2763`, :issue:`2883`, :issue:`2841`, :issue:`2866`) + +- Refactored implementation of NFD management (:issue:`2200`, :issue:`2107`) + +**************************************************************************** + NFD version 0.3.3 (changes since version 0.3.2) +++++++++++++++++++++++++++++++++++++++++++++++ diff --git a/wscript b/wscript index 4c2d6af9..151a0842 100644 --- a/wscript +++ b/wscript @@ -24,7 +24,7 @@ You should have received a copy of the GNU General Public License along with NFD, e.g., in COPYING.md file. If not, see . """ -VERSION = "0.3.3" +VERSION = "0.3.4" APPNAME = "nfd" BUGREPORT = "http://redmine.named-data.net/projects/nfd" URL = "http://named-data.net/doc/NFD/"