From d5cf114956bdd3fc29af7bbbc8ea07f4552c0600 Mon Sep 17 00:00:00 2001 From: ramnes Date: Sat, 4 Dec 2021 22:07:24 +0100 Subject: [PATCH] Release 0.8.0 --- README.md | 4 +--- notion_client/client.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b8301588..e3466514 100644 --- a/README.md +++ b/README.md @@ -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). ## Installation diff --git a/notion_client/client.py b/notion_client/client.py index 0a9c6638..8a73b377 100644 --- a/notion_client/client.py +++ b/notion_client/client.py @@ -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: diff --git a/setup.py b/setup.py index f108f3fc..094c38eb 100644 --- a/setup.py +++ b/setup.py @@ -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="contact@ramnes.eu",