diff --git a/README.md b/README.md index 73d9418..0f2446a 100644 --- a/README.md +++ b/README.md @@ -25,13 +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** (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`. -> * You can now pass your own `start_cursor` in the iteration helpers. +> 📢 **Announcement** (18-12-2024) — Release 2.3.0 is out! It adds +> `in_trash` support for pages, Python 3.13 official support, fixes +> and security updates. ## Installation diff --git a/notion_client/client.py b/notion_client/client.py index 4c2bb2f..e5288b8 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.1", + "User-Agent": "ramnes/notion-sdk-py@2.3.0", } ) if self.options.auth: diff --git a/setup.py b/setup.py index 2085837..85cfadc 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_description(): setup( name="notion-client", - version="2.2.1", + version="2.3.0", url="https://github.com/ramnes/notion-sdk-py", author="Guillaume Gelin", author_email="contact@ramnes.eu",