Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Feb 5, 2022
1 parent 966a51d commit 1f9a4b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
It is meant to be a Python version of the reference [JavaScript SDK](https://github.com/makenotion/notion-sdk-js),
so usage should be pretty similar between both. 😊

> 📢 **Announcement** (04-12-2021) — 0.8.0 is now released and adds support for
> the [recent Notion API changes](https://developers.notion.com/changelog).
> 📢 **Announcement** (05-02-2022) — 0.9.0 is now released! It adds support for
> the [recent Notion API changes](https://developers.notion.com/changelog) and
> timeout errors. It also doesn't send null values anymore (see issue #94).
<!-- markdownlint-disable -->
## Installation
Expand Down
2 changes: 1 addition & 1 deletion notion_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,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@0.8.0",
"User-Agent": "ramnes/notion-sdk-py@0.9.0",
}
)
if self.options.auth:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def get_description():

setup(
name="notion-client",
version="0.8.0",
version="0.9.0",
url="https://github.com/ramnes/notion-sdk-py",
author="Guillaume Gelin",
author_email="[email protected]",
Expand Down

0 comments on commit 1f9a4b4

Please sign in to comment.