Skip to content

Commit 577ad9d

Browse files
committed
Release 2.2.0 🚢
1 parent 7db2d9b commit 577ad9d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,11 @@ It is meant to be a Python version of the reference [JavaScript SDK](https://git
2525
so usage should be very similar between both. 😊 (If not, please open an issue
2626
or PR!)
2727

28-
> 📢 **Announcement** (04-11-2023) — Release 2.1.0 is out! It adds new helpers,
29-
> more tests (100% coverage, yay!) and support for Python 3.12. Also, we're out
30-
> of beta and now consider the package stable.
28+
> 📢 **Announcement** (26-12-2023) — Release 2.2.0 is out!
29+
>
30+
> * Icons and covers can now be removed from pages.
31+
> * `filter_properties` has been added to `notion.pages.retrieve`.
32+
> * You can now pass your own `start_cursor` in the iteration helpers.
3133
3234
<!-- markdownlint-disable -->
3335
## Installation

notion_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def client(self, client: Union[httpx.Client, httpx.AsyncClient]) -> None:
8989
client.headers = httpx.Headers(
9090
{
9191
"Notion-Version": self.options.notion_version,
92-
"User-Agent": "ramnes/notion-sdk-py@2.1.0",
92+
"User-Agent": "ramnes/notion-sdk-py@2.2.0",
9393
}
9494
)
9595
if self.options.auth:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def get_description():
88

99
setup(
1010
name="notion-client",
11-
version="2.1.0",
11+
version="2.2.0",
1212
url="https://github.com/ramnes/notion-sdk-py",
1313
author="Guillaume Gelin",
1414
author_email="[email protected]",

0 commit comments

Comments
 (0)