From 5719cf82e816b2d27bada6a98f41f7215f6cdc0d Mon Sep 17 00:00:00 2001 From: alexdrydew Date: Thu, 23 Feb 2023 16:06:21 +0100 Subject: [PATCH] 1.1.4 release --- CHANGELOG.md | 9 +++++++++ src/__version__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30d7c2bc..f8841814 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +1.1.4 +------------------- +Features: +* Added `verify` parameter to `TolokaClient` and `AsyncTolokaClient`. This parameter controls SSL certificate verification settings. + +Bugfixes: +* Fixed deserialization of legacy Toloka projects bug which was caused by an attempt to parse view spec with empty `lock` field. + + 1.1.3 ------------------- Bugfixes: diff --git a/src/__version__.py b/src/__version__.py index bd0dc274..24066b8d 100644 --- a/src/__version__.py +++ b/src/__version__.py @@ -1,3 +1,3 @@ __title__ = 'toloka-kit' -__version__ = '1.1.3' +__version__ = '1.1.4' __license__ = 'Apache 2.0'