diff --git a/CHANGELOG.rst b/CHANGELOG.rst
new file mode 100644
index 0000000000000000000000000000000000000000..1f20417c38eb069c339874c61de9767175c6c826
--- /dev/null
+++ b/CHANGELOG.rst
@@ -0,0 +1,14 @@
+=========
+CHANGELOG
+=========
+
+-----
+0.1.0
+-----
+
+* Cody Scot <cody.j.b.scott@gmail.com> : Respect `get_next_url()` of base authenticator.
+
+-----
+0.0.2
+-----
+* Carl Waldbieser <cwaldbieser@gmail.com> : Initial release.
diff --git a/RELEASE.rst b/RELEASE.rst
new file mode 100644
index 0000000000000000000000000000000000000000..43e762fdf0212b9dffe45d34958995ad43aa1c65
--- /dev/null
+++ b/RELEASE.rst
@@ -0,0 +1,12 @@
+==================
+Release Procedures
+==================
+
+* Edit version in :file:`version.py`.
+* Update file:`CHANGELOG.rst`
+* Tag the git repo with the version.
+
+.. code:: bash
+
+    $ python3 setup.py sdist bdist_wheel
+    $ twine upload dist/* 
diff --git a/version.py b/version.py
index 0a9b5c917e4214018a3f5dc6ee8b06fe3be06131..ab93bc9f048cb9dfd40a62b7c73526c7c1f61912 100644
--- a/version.py
+++ b/version.py
@@ -3,8 +3,8 @@
 
 version_info = (
     0,
+    1,
     0,
-    2,
     #'dev', # comment-out this line for a release
 )
 __version__ = '.'.join(map(str, version_info[:3]))