docs: Prepare version 0.2.0 release notes

Change-Id: Ie390e902d8389f8554b62a1dbbb8fdb73772263b
diff --git a/AUTHORS.md b/AUTHORS.md
index c07dff1..7037258 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -9,6 +9,7 @@
 
     * Ashlesh Gawande <agawande@memphis.edu>
     * Vince Lehman    <http://vslehman.com>
+    * Yucheng Zhang   <yzhang@memphis.edu>
     * Lan Wang        <http://www.cs.memphis.edu/~lanwang/>
 
 * The University of Arizona
@@ -26,4 +27,4 @@
 
     * Caio de Moraes Elias
     * Carlos Cabral
-    * Christian Esteve Rothenberg
\ No newline at end of file
+    * Christian Esteve Rothenberg
diff --git a/bin/minindn b/bin/minindn
index 324513b..5f01c2c 100755
--- a/bin/minindn
+++ b/bin/minindn
@@ -82,7 +82,7 @@
 from ndn.nlsr import Nlsr, NlsrConfigGenerator
 from ndn.nfd import Nfd
 
-VERSION_NUMBER = "0.1.1"
+VERSION_NUMBER = "0.2.0"
 
 def printExperimentNames(option, opt, value, parser):
     experimentNames = ExperimentManager.getExperimentNames()
diff --git a/bin/minindnedit b/bin/minindnedit
index 4299590..cbed2c6 100755
--- a/bin/minindnedit
+++ b/bin/minindnedit
@@ -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-2016, 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/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md
index 8ae4189..7db0813 100644
--- a/docs/RELEASE-NOTES.md
+++ b/docs/RELEASE-NOTES.md
@@ -1,6 +1,32 @@
 Release Notes
 =============
 
+Mini-NDN version 0.2.0 (changes since version 0.1.1)
+
+Release date: August 18, 2016
+
+**New featues**:
+
+- Automatic security configuration for NLSR
+
+- Use /usr/local/etc/ndn/nfd.conf as default config file for NFD
+
+- Class to monitor /proc/$PID/stat file for PID
+
+- Mini-NDN exits gracefully on SIGINT and non-convergence
+
+- Faster Mini-NDN install script - does not do apt-get update everytime
+
+- NLSR is launched with explicit config file for easier process identification
+
+- Add and update more documentation
+
+**Bug fixes**:
+
+- NFD is killed correctly on exit
+
+- Best route strategy is set correctly
+
 Mini-NDN version 0.1.1 (changes since version 0.1.0)
 ----------------------------------------
 
diff --git a/install.sh b/install.sh
index d7b7859..87dc96e 100755
--- a/install.sh
+++ b/install.sh
@@ -1,9 +1,9 @@
 #!/bin/bash
 # -*- Mode:bash; 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-2016, 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/__init__.py b/ndn/__init__.py
index 2368c2f..8fe0531 100644
--- a/ndn/__init__.py
+++ b/ndn/__init__.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-2016, 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.
@@ -21,4 +21,4 @@
 # along with Mini-NDN, e.g., in COPYING.md file.
 # If not, see <http://www.gnu.org/licenses/>.
 
-import experiment_manager as ExperimentManager
\ No newline at end of file
+import experiment_manager as ExperimentManager
diff --git a/ndn/conf_parser.py b/ndn/conf_parser.py
index a351a68..753c3b1 100644
--- a/ndn/conf_parser.py
+++ b/ndn/conf_parser.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-2016, 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/experiment_manager.py b/ndn/experiment_manager.py
index 347ee26..964a3c9 100644
--- a/ndn/experiment_manager.py
+++ b/ndn/experiment_manager.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-2016, 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 0fdc68b..cf090a4 100644
--- a/ndn/gui.py
+++ b/ndn/gui.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-2016, 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/ndn_application.py b/ndn/ndn_application.py
index 48a6c1d..0ee6c51 100644
--- a/ndn/ndn_application.py
+++ b/ndn/ndn_application.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2016 The University of Memphis,
-#                    Arizona Board of Regents,
-#                    Regents of the University of California.
+# Copyright (C) 2015-2016, 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/ndn_host.py b/ndn/ndn_host.py
index 15bf245..70d2ffb 100644
--- a/ndn/ndn_host.py
+++ b/ndn/ndn_host.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-2016, 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/nfd.py b/ndn/nfd.py
index 17c7b4a..8e39a39 100644
--- a/ndn/nfd.py
+++ b/ndn/nfd.py
@@ -1,8 +1,8 @@
 # -*- Mode:python; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
 #
-# Copyright (C) 2016 The University of Memphis,
-#                    Arizona Board of Regents,
-#                    Regents of the University of California.
+# Copyright (C) 2015-2016, 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/setup.py b/setup.py
index 8f10b5e..8229d80 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@
 
 setup(
     name = "Mini-NDN",
-    version = '0.1.1',
+    version = '0.2.0',
     packages = find_packages(),
     scripts = ['bin/minindn', 'bin/minindnedit'],
 )