Updated to version 1.0.1
diff --git a/AUTHORS.rst b/AUTHORS.rst
index 4d69944..360f092 100644
--- a/AUTHORS.rst
+++ b/AUTHORS.rst
@@ -1,5 +1,6 @@
-UserAle.pyqt5 is written and maintained by Michelle Beard and 
-various contributors:
+.. _authors:
+
+UserAle.pyqt5 is written and maintained by Draper and various contributors:
 
 Development Lead
 ````````````````
@@ -12,5 +13,4 @@
 - Laura Mariano <lmariano@draper.com>
 - Dr. Joshua Poore <jpoore@draper.com>
 - Clay Gimenez <cgimenez@draper.com>
-- Steven York <syork@draper.com>
 - Hugh Enxing <henxing@draper.com>
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 456a39f..d57d2d0 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,4 +1,23 @@
-Version 1.0.0
--------------
+.. _changelog:
 
-    - Initial commit.
\ No newline at end of file
+1.0.1 (2016-07-29)
+------------------
+
+* All logs will be stored to file called userale.log (configurable).
+* Users can specify which events to capture by passing in a list of event keys when instantiating UserAle.
+* These are the events UserAle is tracking:
+
+	* ``mouseup``
+	* ``mousedown``
+	* ``mouseover``
+	* ``keypress`` (optional)
+	* ``keydown`` (optional)
+	* ``dragstart``
+	* ``dragleave``
+	* ``dragmove``
+	* ``dragdrop``
+
+1.0.0 (2016-06-24)
+------------------
+
+Initial release.
\ No newline at end of file
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 90b85a9..705f977 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -1,3 +1,5 @@
+.. _contributing:
+
 Contributing to UserAle.pyqt5
 -----------------------------
 
@@ -8,9 +10,9 @@
 testing your contribution, as well as communicate effectively with you during
 the review process.
 
-1) Create an issue in our JIRA
+1) Create an issue in GitHub
 
-    All changes to UserAle must have corresponding issues in JIRA so the
+    All changes to UserAle must have corresponding issues in GitHub so the
     change can be properly tracked:
 
         https://github.com/draperlaboratory/userale.pyqt5/issues
diff --git a/README.rst b/README.rst
index 50e45fd..cd27bd0 100644
--- a/README.rst
+++ b/README.rst
@@ -3,6 +3,6 @@
 
 UserAle.pyqt5 is one of the Software As A Sensor™ products. The goal of Software As A Sensor™ is to develop understanding 
 of your users through their interactions with your software product. You can then apply that understanding to improve your 
-product's design and funtionality. UserAle.pyqt5 provides an easy way to generate highly detailed log streams from an PyQT5 application.
+product's design and functionality. UserAle.pyqt5 provides an easy way to generate highly detailed log streams from any PyQt5 application.
 
-UserAle.pyqt5 is developed at Draper and released free and open source through the Apache v2.0 license. Bug reports and contributions are welcome through Github.
+UserAle.pyqt5 is developed at Draper and released free and open source through the Apache v2.0 license. Bug reports and contributions are welcome through GitHub.
diff --git a/docs/source/installation.rst b/docs/source/installation.rst
index e3ca3fb..4717cd0 100644
--- a/docs/source/installation.rst
+++ b/docs/source/installation.rst
@@ -96,7 +96,7 @@
 
 ::
 
-	$ mkdir userale.pyqt5-docs & cd userale.pyqt5/docs
+	$ mkdir userale.pyqt5-docs & cd userale.pyqt5-docs
 
 Execute build command:
 
diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst
index 495ad79..d40703b 100644
--- a/docs/source/quickstart.rst
+++ b/docs/source/quickstart.rst
@@ -54,3 +54,11 @@
 	ale = Ale (output="mouse.log", user="testUser", version="0.0.1")
 	# install globally
 	app.installEventFilter (ale)
+
+
+Instrumenting Your Application Manually with UserAle
+----------------------------------------------------
+
+.. todo::
+	
+	Write guidelines for instrumenting specific PyQt5 Widgets with UserAle.
\ No newline at end of file
diff --git a/userale/version.py b/userale/version.py
index 5edac18..41398fc 100644
--- a/userale/version.py
+++ b/userale/version.py
@@ -18,4 +18,4 @@
 and parsed by ``setup.py``.
 """
 
-__version__ = "1.0.0"
\ No newline at end of file
+__version__ = "1.0.1"
\ No newline at end of file