Skip to content

Commit

Permalink
Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Nov 4, 2023
1 parent 17554e0 commit ca3dab9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<!-- 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 @@ -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:
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="2.0.0",
version="2.1.0",
url="https://github.com/ramnes/notion-sdk-py",
author="Guillaume Gelin",
author_email="[email protected]",
Expand Down

0 comments on commit ca3dab9

Please sign in to comment.