summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVlastimil Zíma <vlastimil.zima@nic.cz>2020-07-14 12:55:21 +0200
committerVlastimil Zíma <vlastimil.zima@nic.cz>2020-07-14 12:55:21 +0200
commit40988b5603640e36ee90e134d64f0a33abc79af1 (patch)
treeab16098208634b50cd28e92f07be0d138d4faa25
parent80f6ffa0c2431ed3a955895c3b3b7f0b83f6a0fb (diff)
downloadopenid-40988b5603640e36ee90e134d64f0a33abc79af1.tar.gz
Bump version: 3.2rc1 → 3.2rc2
-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',