diff --git a/README.md b/README.md index e393f45..7f469ed 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,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** (10-12-2022) — Release 2.0.0 is out! It mostly adds new -> helpers, support for the comments API, more tests, and Python 3.11. -> -> Beware, `Notion-Version` has been upgraded to `2022-06-28` and it brings -> [breaking changes](https://developers.notion.com/changelog/releasing-notion-version-2022-06-28). +> 📢 **Announcement** (04-11-2023) — Release 2.1.0 is out! It adds new helpers, +> more tests (100% coverage, yay!) and support for Python 3.12. Also, we're out +> of beta and now consider the package stable. ## Installation diff --git a/notion_client/client.py b/notion_client/client.py index 23fda57..5b7b8ba 100644 --- a/notion_client/client.py +++ b/notion_client/client.py @@ -89,7 +89,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@2.0.0", + "User-Agent": "ramnes/notion-sdk-py@2.1.0", } ) if self.options.auth: diff --git a/setup.py b/setup.py index daa34c3..5d50cbd 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def get_description(): setup( name="notion-client", - version="2.0.0", + version="2.1.0", url="https://github.com/ramnes/notion-sdk-py", author="Guillaume Gelin", author_email="contact@ramnes.eu",