Added version 3.1.1 to changelog
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index b48c5bb..fff92aa 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,6 +1,11 @@
Python-RSA changelog
========================================
+Version 3.1.1 - in development
+----------------------------------------
+
+- Fixed doctests for Python 2.7
+
Version 3.1 - released 2012-06-17
----------------------------------------
diff --git a/rsa/__init__.py b/rsa/__init__.py
index 59d5a9d..8fb5e00 100644
--- a/rsa/__init__.py
+++ b/rsa/__init__.py
@@ -29,7 +29,7 @@
__author__ = "Sybren Stuvel, Barry Mead and Yesudeep Mangalapilly"
__date__ = "2012-06-17"
-__version__ = '3.1'
+__version__ = '3.1.1'
from rsa.key import newkeys, PrivateKey, PublicKey
from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \