docs: Prepare version 0.1.1 release notes

Change-Id: Ie2d8546eedfac8e9e54d1fcc68122dcc3f90b1b9
diff --git a/bin/minindn b/bin/minindn
index e081883..fd38093 100755
--- a/bin/minindn
+++ b/bin/minindn
@@ -79,7 +79,7 @@
 from ndn.nlsr import Nlsr, NlsrConfigGenerator
 from ndn.nfd import Nfd
 
-VERSION_NUMBER = "0.1.0"
+VERSION_NUMBER = "0.1.1"
 
 def printExperimentNames(option, opt, value, parser):
     experimentNames = ExperimentManager.getExperimentNames()
diff --git a/docs/RELEASE-NOTES.md b/docs/RELEASE-NOTES.md
index b367cda..8ae4189 100644
--- a/docs/RELEASE-NOTES.md
+++ b/docs/RELEASE-NOTES.md
@@ -1,6 +1,39 @@
 Release Notes
 =============
 
+Mini-NDN version 0.1.1 (changes since version 0.1.0)
+----------------------------------------
+
+Release date: November 4, 2015
+
+**New features**:
+
+- Use nfd.conf.sample from currently installed NFD
+
+- Add working directory option to allow execution environment outside of /tmp
+
+- Add results directory option to store experiment results after completion
+
+- Add support for switches in GUI and configuration file
+
+- Add failNode and recoverNode methods to Experiment class
+
+- Add most connected node (MCN) failure experiment
+
+- Add option to specify percentage of nodes pinged
+
+**Code changes**:
+
+- Refactor program options into container class
+
+- Remove unused "FIB Entries" option from NDN host options
+
+**Bug fixes**:
+
+- Abort start up if experiment name is invalid
+
+- Restart pings after recovery in failure experiment
+
 Mini-NDN version 0.1.0 (initial release)
 ----------------------------------------
 
diff --git a/install.sh b/install.sh
index 3f7bb2a..8351a43 100755
--- a/install.sh
+++ b/install.sh
@@ -149,6 +149,7 @@
     ./waf configure
     ./waf
     sudo ./waf install
+    sudo ldconfig
     cd ../
 }
 
@@ -158,7 +159,11 @@
     $install unzip
     wget http://www.cryptopp.com/cryptopp562.zip
     unzip cryptopp562.zip
-    make
+
+    # Uncomments flags to build shared object
+    sed -i '/^# CXXFLAGS += -fPIC/s/^# //' GNUmakefile
+
+    make static dynamic
     sudo make install
     cd ../
 }
diff --git a/setup.py b/setup.py
index ec8f76a..8f10b5e 100644
--- a/setup.py
+++ b/setup.py
@@ -4,6 +4,7 @@
 
 setup(
     name = "Mini-NDN",
+    version = '0.1.1',
     packages = find_packages(),
     scripts = ['bin/minindn', 'bin/minindnedit'],
 )