Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Dec 4, 2021
1 parent 20705ac commit d5cf114
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
This client 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** (05-10-2021) — 0.7.0 is now released and adds support for
> 📢 **Announcement** (04-12-2021) — 0.8.0 is now released and adds support for
> the [recent Notion API changes](https://developers.notion.com/changelog).
> Beware, `Notion-Version` has been upgraded to `2021-08-16` and it brings
> [breaking changes](https://developers.notion.com/changelog/notion-version-2021-08-16).
<!-- 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.7.1",
"User-Agent": "ramnes/notion-sdk-py@0.8.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.7.1",
version="0.8.0",
url="https://github.com/ramnes/notion-sdk-py",
author="Guillaume Gelin",
author_email="[email protected]",
Expand Down

0 comments on commit d5cf114

Please sign in to comment.