summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bumpversion.cfg3
-rw-r--r--Changelog.md3
-rw-r--r--openid/__init__.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 93c0a99..7e331d1 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 3.2rc1
+current_version = 3.2rc2
commit = True
tag = True
tag_name = {new_version}
@@ -19,4 +19,3 @@ values =
final
[bumpversion:file:openid/__init__.py]
-
diff --git a/Changelog.md b/Changelog.md
index 5923c3f..8079af8 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,8 +1,11 @@
# Changelog #
## 3.2 ##
+ * Add support for python 3.8.
* Drop support for python 3.4.
* Fix false positive redirect error in consumer verification.
+ * Do not percent escape sub delimiters in path in URI normalization. Thanks Colin Watson for report.
+ * Fix tests and static code checks. Thanks Colin Watson.
## 3.1 ##
* Convert data values for extensions to text.
diff --git a/openid/__init__.py b/openid/__init__.py
index 5bb0e9f..66e47a7 100644
--- a/openid/__init__.py
+++ b/openid/__init__.py
@@ -24,7 +24,7 @@ module.
"""
from __future__ import unicode_literals
-__version__ = '3.2rc1'
+__version__ = '3.2rc2'
__all__ = [
'association',