Skip to content

Commit fa5d3ba

Browse files
committed
Release 1.0.0 🔥
1 parent 36fc0e4 commit fa5d3ba

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@
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** (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).
23+
> 📢 **Announcement** (18-04-2022) — Notion API is officially out of beta, and
24+
> we are too: 1.0.0 is now released!
25+
> Beware, `Notion-Version` has been upgraded to `2022-02-22` and it brings
26+
> [breaking changes](https://developers.notion.com/changelog/releasing-notion-version-2022-02-22).
2627
2728
<!-- markdownlint-disable -->
2829
## Installation

notion_client/client.py

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

0 commit comments

Comments
 (0)