summaryrefslogtreecommitdiff
diff options
authorTomáš Pazderka <tomas.pazderka@nic.cz>2023-07-03 09:07:27 +0200
committerTomáš Pazderka <tomas.pazderka@nic.cz>2023-07-03 09:07:27 +0200
commit4535d4126d72b40c0518a9856b6e57250012f2bf (patch)
tree77448595641e7dc9c146e07dab18e505f2678a0e
parent35c5afad8f51cbeea46e43b1023261dbda456910 (diff)
Prepare 1.6.1 release1.6.1
-rw-r--r--CHANGELOG.md7
-rw-r--r--src/oic/__init__.py2
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 410b289b..dff9557d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,7 +7,12 @@ The format is based on the [KeepAChangeLog] project.
## Unreleased
-## 1.6.0 [2022-12-14]
+## 1.6.1 [2023-07-13]
+- [#862] Fixed pydantic dependency
+
+[#862]: https://github.com/CZ-NIC/pyoidc/pull/862
+
+## 1.6.0 [2023-05-15]
- [#854] Improve OIDC Session Management support by using the `session_state` parameter from an *Authentication Response* (if available) as a key to store `Consumer` data.
diff --git a/src/oic/__init__.py b/src/oic/__init__.py
index 73fd0a32..22bd0eb2 100644
--- a/src/oic/__init__.py
+++ b/src/oic/__init__.py
@@ -24,7 +24,7 @@ except ImportError:
)
__author__ = "Roland Hedberg"
-__version__ = "1.6.0"
+__version__ = "1.6.1"
OIDCONF_PATTERN = "%s/.well-known/openid-configuration"