From 3cca962d245b6b135487e526958b404902b8dd5c Mon Sep 17 00:00:00 2001 From: ramnes Date: Thu, 28 Dec 2023 12:31:10 +0100 Subject: [PATCH] =?UTF-8?q?Release=202.2.1=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 +++- notion_client/client.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b132769..73d9418 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,9 @@ It is meant to be a Python version of the reference [JavaScript SDK](https://git so usage should be very similar between both. 😊 (If not, please open an issue or PR!) -> 📢 **Announcement** (26-12-2023) — Release 2.2.0 is out! +> 📢 **Announcement** (28-12-2023) — Release 2.2.1 is out and fixes iteration helpers. +> +> What's new in 2.2.0 (26-12-2023): > > * Icons and covers can now be removed from pages. > * `filter_properties` has been added to `notion.pages.retrieve`. diff --git a/notion_client/client.py b/notion_client/client.py index e3344d1..4c2bb2f 100644 --- a/notion_client/client.py +++ b/notion_client/client.py @@ -89,7 +89,7 @@ def client(self, client: Union[httpx.Client, httpx.AsyncClient]) -> None: client.headers = httpx.Headers( { "Notion-Version": self.options.notion_version, - "User-Agent": "ramnes/notion-sdk-py@2.2.0", + "User-Agent": "ramnes/notion-sdk-py@2.2.1", } ) if self.options.auth: diff --git a/setup.py b/setup.py index 271e3b3..8ce4c8f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_description(): setup( name="notion-client", - version="2.2.0", + version="2.2.1", url="https://github.com/ramnes/notion-sdk-py", author="Guillaume Gelin", author_email="contact@ramnes.eu",