diff --git a/README.md b/README.md index 69bb405e..e4c66843 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ 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** (29-07-2021) — 0.5.0 is now released and mostly adds -> support for the recent Notion API changes, and per-function -> authentication. Upgrading from 0.4.0 should be seamless. +> 📢 **Announcement** (14-08-2021) — 0.6.0 is now released and adds support for +> the [recent Notion API changes](https://developers.notion.com/changelog). +> Upgrading should be seamless from 0.4.0 onwards. ## Installation diff --git a/notion_client/client.py b/notion_client/client.py index 6c05fc1f..23ca417b 100644 --- a/notion_client/client.py +++ b/notion_client/client.py @@ -70,7 +70,7 @@ def __init__( self.client.headers = httpx.Headers( { "Notion-Version": options.notion_version, - "User-Agent": "ramnes/notion-sdk-py@0.5.0", + "User-Agent": "ramnes/notion-sdk-py@0.6.0", } ) if options.auth: diff --git a/setup.py b/setup.py index 2df1df69..b9fec388 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_description(): setup( name="notion-client", - version="0.5.0", + version="0.6.0", url="https://github.com/ramnes/notion-sdk-py", author="Guillaume Gelin", author_email="contact@ramnes.eu",