summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlastimil Zíma <vlastimil.zima@nic.cz>2019-10-08 14:57:20 +0200
committerVlastimil Zíma <vlastimil.zima@nic.cz>2019-10-08 14:57:20 +0200
commit557dc2eac99b29feda2c7f207f7ad6cbe90dde09 (patch)
tree26c5dc708b547d82d3c0e9b7cedf81895af5ebf2
parenta887940114c1eec9a3fadc2792346c1a51353c47 (diff)
downloadopenid-557dc2eac99b29feda2c7f207f7ad6cbe90dde09.tar.gz
Bump version: 3.1 → 3.2rc1
-rw-r--r--.bumpversion.cfg2
-rw-r--r--Changelog.md4
-rw-r--r--openid/__init__.py2
3 files changed, 6 insertions, 2 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 4f1f308..93c0a99 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 3.1
+current_version = 3.2rc1
commit = True
tag = True
tag_name = {new_version}
diff --git a/Changelog.md b/Changelog.md
index 70fa0ea..5923c3f 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,9 @@
# Changelog #
+## 3.2 ##
+ * Drop support for python 3.4.
+ * Fix false positive redirect error in consumer verification.
+
## 3.1 ##
* Convert data values for extensions to text.
* Fixes in Python 2/3 support.
diff --git a/openid/__init__.py b/openid/__init__.py
index cceb98a..5bb0e9f 100644
--- a/openid/__init__.py
+++ b/openid/__init__.py
@@ -24,7 +24,7 @@ module.
"""
from __future__ import unicode_literals
-__version__ = '3.1'
+__version__ = '3.2rc1'
__all__ = [
'association',