Update version info.

Test out an update to the docs.
diff --git a/HISTORY.rst b/HISTORY.rst
index bdcd310..ad20d1d 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,14 @@
 Changelog
 =========
 
+0.2.0 - 2013-07-26
+------------------
+
+- Refactor the library a bit and add more tests.
+
+- Backwards incompatible with 0.1.x if using ``URIVariable`` directly from
+  ``uritemplate.template``
+
 0.1.1 - 2013-05-19
 ------------------
 
diff --git a/docs/index.rst b/docs/index.rst
index 38a440c..398b8af 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -74,4 +74,4 @@
 methods, and functions in this section may break in future releases.
 
 .. autoclass:: uritemplate.template.URIVariable
-    :members: expand
+    :members: original, operator, safe, variables, expand
diff --git a/uritemplate/__init__.py b/uritemplate/__init__.py
index 4384367..0e3ae5a 100644
--- a/uritemplate/__init__.py
+++ b/uritemplate/__init__.py
@@ -16,7 +16,7 @@
 __author__ = 'Ian Cordasco'
 __license__ = 'Modified BSD'
 __copyright__ = 'Copyright 2013 Ian Cordasco'
-__version__ = '0.1.1'
+__version__ = '0.2.0'
 __version_info__ = tuple(int(i) for i in __version__.split('.'))
 
 from uritemplate.api import URITemplate, expand