Skip to content

Commit 1f9a4b4

Browse files
committed
Release 0.9.0
1 parent 966a51d commit 1f9a4b4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
It is meant to be a Python version of the reference [JavaScript SDK](https://github.com/makenotion/notion-sdk-js),
2121
so usage should be pretty similar between both. 😊
2222

23-
> 📢 **Announcement** (04-12-2021) — 0.8.0 is now released and adds support for
24-
> the [recent Notion API changes](https://developers.notion.com/changelog).
23+
> 📢 **Announcement** (05-02-2022) — 0.9.0 is now released! It adds support for
24+
> the [recent Notion API changes](https://developers.notion.com/changelog) and
25+
> timeout errors. It also doesn't send null values anymore (see issue #94).
2526
2627
<!-- markdownlint-disable -->
2728
## Installation

notion_client/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def client(self, client: Union[httpx.Client, httpx.AsyncClient]) -> None:
8686
client.headers = httpx.Headers(
8787
{
8888
"Notion-Version": self.options.notion_version,
89-
"User-Agent": "ramnes/notion-sdk-py@0.8.0",
89+
"User-Agent": "ramnes/notion-sdk-py@0.9.0",
9090
}
9191
)
9292
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="0.8.0",
11+
version="0.9.0",
1212
url="https://github.com/ramnes/notion-sdk-py",
1313
author="Guillaume Gelin",
1414
author_email="[email protected]",

0 commit comments

Comments
 (0)