From 4535d4126d72b40c0518a9856b6e57250012f2bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Pazderka?= Date: Mon, 3 Jul 2023 09:07:27 +0200 Subject: [PATCH] Prepare 1.6.1 release --- CHANGELOG.md | 7 ++++++- src/oic/__init__.py | 2 +- 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 @@ ) __author__ = "Roland Hedberg" -__version__ = "1.6.0" +__version__ = "1.6.1" OIDCONF_PATTERN = "%s/.well-known/openid-configuration"