diff --git a/CHANGELOG.md b/CHANGELOG.md index 3634f164..b279e9b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on the [KeepAChangeLog] project. ## Unreleased +## 1.3.0 [2021-07-09] + ### Changed - [#763] Drop python 3.5 support @@ -20,6 +22,11 @@ The format is based on the [KeepAChangeLog] project. [#763]: https://github.com/OpenIDC/pyoidc/pull/763/ [#790]: https://github.com/OpenIDC/pyoidc/pull/790 +## 1.2.1 [2020-12-01] + +### Fixed +- Fixed several client vulnerabilities (CVE-2020-26244) + ## 1.2.0 [2020-02-05] ### Fixed diff --git a/src/oic/__init__.py b/src/oic/__init__.py index 41fe86d6..97538529 100644 --- a/src/oic/__init__.py +++ b/src/oic/__init__.py @@ -24,7 +24,7 @@ ) __author__ = "Roland Hedberg" -__version__ = "1.2.0" +__version__ = "1.3.0" OIDCONF_PATTERN = "%s/.well-known/openid-configuration"