docs: Prepare version 0.3.0 release notes

refs: #3985

Change-Id: I5172cfe96b104b6c0b8cdf769413b9223d79ed18
diff --git a/AUTHORS.md b/AUTHORS.md
index 7037258..7372360 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -7,10 +7,12 @@
 
 * The University of Memphis
 
-    * Ashlesh Gawande <agawande@memphis.edu>
-    * Vince Lehman    <http://vslehman.com>
-    * Yucheng Zhang   <yzhang@memphis.edu>
-    * Lan Wang        <http://www.cs.memphis.edu/~lanwang/>
+    * Ashlesh Gawande      <agawande@memphis.edu>
+    * Vince Lehman         <http://vslehman.com>
+    * Yucheng Zhang        <yzhang@memphis.edu>
+    * Muktadir R Chowdhury <mrchwdhr@memphis.edu>
+    * Nicholas Gordon      <nmgordon@memphis.edu>
+    * Lan Wang             <http://www.cs.memphis.edu/~lanwang/>
 
 * The University of Arizona
 
diff --git a/bin/minindn b/bin/minindn
index d0ff5ef..c6fc1f8 100755
--- a/bin/minindn
+++ b/bin/minindn
@@ -89,7 +89,7 @@
 from ndn.nlsr import Nlsr, NlsrConfigGenerator
 from ndn.nfd import Nfd
 
-VERSION_NUMBER = "0.2.0"
+VERSION_NUMBER = "0.3.0"
 INSTALL_DIR='/usr/local/etc/mini-ndn/'
 
 class PrintExperimentNames(argparse.Action):
diff --git a/bin/minindnedit b/bin/minindnedit
index cbed2c6..8669dde 100755
--- a/bin/minindnedit
+++ b/bin/minindnedit
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md
index 7db0813..82734e5 100644
--- a/docs/RELEASE-NOTES.md
+++ b/docs/RELEASE-NOTES.md
@@ -1,7 +1,48 @@
 Release Notes
 =============
 
+Mini-NDN version 0.3.0 (changes since version 0.2.0)
+
+Release date: March 3, 2017
+
+**New featues**:
+
+- Mini-NDN cluster edition
+
+- New experiments for making NLSR testing easier
+
+**Bug fixes**:
+
+- Set site name correctly
+
+- Install missing certificates in NLSR security config
+
+- Fix quitting of NLSR due to key not found error
+
+**Misc changes**:
+
+- Removed nlsr.conf file, generate it within the code
+
+- Use argparse instead of deprecated optparse
+
+- Update security config section for NLSR
+
+- Change mininet prompt to mini-ndn
+
+- Set network name at one place
+
+- Update install.sh script to install openssl
+
+- Update install.sh script to install cryptopp from package instead of compiling from source
+
+- Update install.sh to clean build folder every time to get rid of removed files such as old experiments
+
+- Fix old code - use net.hosts instead of storing hosts in a variable
+
+- Use nfdc instead of deprecated nfd-status
+
 Mini-NDN version 0.2.0 (changes since version 0.1.1)
+----------------------------------------
 
 Release date: August 18, 2016
 
diff --git a/ndn/__init__.py b/ndn/__init__.py
index 8fe0531..9978cda 100644
--- a/ndn/__init__.py
+++ b/ndn/__init__.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/ndn/conf_parser.py b/ndn/conf_parser.py
index 753c3b1..725c1b0 100644
--- a/ndn/conf_parser.py
+++ b/ndn/conf_parser.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/ndn/experiment_manager.py b/ndn/experiment_manager.py
index 964a3c9..f505646 100644
--- a/ndn/experiment_manager.py
+++ b/ndn/experiment_manager.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/ndn/experiments/convergence_experiment.py b/ndn/experiments/convergence_experiment.py
index 451ff35..c67b184 100644
--- a/ndn/experiments/convergence_experiment.py
+++ b/ndn/experiments/convergence_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2017 The University of Memphis,
-#                         Arizona Board of Regents,
-#                         Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/experiment.py b/ndn/experiments/experiment.py
index 0b917c2..f5f4118 100644
--- a/ndn/experiments/experiment.py
+++ b/ndn/experiments/experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2017 The University of Memphis,
-#                         Arizona Board of Regents,
-#                         Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/failure_experiment.py b/ndn/experiments/failure_experiment.py
index d8d7dc9..8397836 100644
--- a/ndn/experiments/failure_experiment.py
+++ b/ndn/experiments/failure_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015 The University of Memphis,
-#                    Arizona Board of Regents,
-#                    Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/mcn_failure_convergence_experiment.py b/ndn/experiments/mcn_failure_convergence_experiment.py
index 942d151..aced2dc 100644
--- a/ndn/experiments/mcn_failure_convergence_experiment.py
+++ b/ndn/experiments/mcn_failure_convergence_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2017 The University of Memphis,
-#                         Arizona Board of Regents,
-#                         Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/mcn_failure_experiment.py b/ndn/experiments/mcn_failure_experiment.py
index e5bd462..bd85eff 100644
--- a/ndn/experiments/mcn_failure_experiment.py
+++ b/ndn/experiments/mcn_failure_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2017 The University of Memphis,
-#                         Arizona Board of Regents,
-#                         Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/multiple_failure_experiment.py b/ndn/experiments/multiple_failure_experiment.py
index 2759c67..4fc8e8c 100644
--- a/ndn/experiments/multiple_failure_experiment.py
+++ b/ndn/experiments/multiple_failure_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015 The University of Memphis,
-#                    Arizona Board of Regents,
-#                    Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/experiments/pingall_experiment.py b/ndn/experiments/pingall_experiment.py
index ba6b570..ebac539 100644
--- a/ndn/experiments/pingall_experiment.py
+++ b/ndn/experiments/pingall_experiment.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015 The University of Memphis,
-#                    Arizona Board of Regents,
-#                    Regents of the University of California.
+# Copyright (C) 2015-2017, The University of Memphis,
+#                          Arizona Board of Regents,
+#                          Regents of the University of California.
 #
 # This file is part of Mini-NDN.
 # See AUTHORS.md for a complete list of Mini-NDN authors and contributors.
diff --git a/ndn/gui.py b/ndn/gui.py
index cf090a4..0a0a756 100644
--- a/ndn/gui.py
+++ b/ndn/gui.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
@@ -154,4 +154,3 @@
             "radius": self.radius.get(),
             "max-faces-per-prefix": self.maxFaces.get()
         }
-
diff --git a/ndn/ndn_application.py b/ndn/ndn_application.py
index 0ee6c51..7720734 100644
--- a/ndn/ndn_application.py
+++ b/ndn/ndn_application.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/ndn/nfd.py b/ndn/nfd.py
index d779a69..b643e76 100644
--- a/ndn/nfd.py
+++ b/ndn/nfd.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/ndn/process_monitor.py b/ndn/process_monitor.py
index 2392aff..f8dca44 100644
--- a/ndn/process_monitor.py
+++ b/ndn/process_monitor.py
@@ -1,6 +1,6 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2015-2016, The University of Memphis,
+# Copyright (C) 2015-2017, The University of Memphis,
 #                          Arizona Board of Regents,
 #                          Regents of the University of California.
 #
diff --git a/setup.py b/setup.py
index 8229d80..06a12cb 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@
 
 setup(
     name = "Mini-NDN",
-    version = '0.2.0',
+    version = '0.3.0',
     packages = find_packages(),
     scripts = ['bin/minindn', 'bin/minindnedit'],
 )