Release v2.0.0
diff --git a/HISTORY.rst b/HISTORY.rst
index bd0ef1e..65f7132 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,12 @@
 Changelog
 =========
 
+2.0.0 - 2016-08-20
+------------------
+
+- Relicense uritemplate.py as Apache 2 and BSD (See
+  https://github.com/sigmavirus24/uritemplate/pull/23)
+
 1.0.1 - 2016-08-18
 ------------------
 
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index fca1623..ad751c1 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -14,9 +14,9 @@
 
 __title__ = 'uritemplate'
 __author__ = 'Ian Cordasco'
-__license__ = 'Modified BSD'
+__license__ = 'Modified BSD or Apache License, Version 2.0'
 __copyright__ = 'Copyright 2013 Ian Cordasco'
-__version__ = '1.0.1'
+__version__ = '2.0.0'
 __version_info__ = tuple(int(i) for i in __version__.split('.'))
 
 from uritemplate.api import URITemplate, expand, partial  # noqa: E402