Skip to content

Commit

Permalink
Release 1.0.0 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Apr 18, 2022
1 parent 36fc0e4 commit fa5d3ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@
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** (05-02-2022) — 0.9.0 is now released! It adds support for
> the [recent Notion API changes](https://developers.notion.com/changelog) and
> timeout errors. It also doesn't send null values anymore (see issue #94).
> 📢 **Announcement** (18-04-2022) — Notion API is officially out of beta, and
> we are too: 1.0.0 is now released!
> Beware, `Notion-Version` has been upgraded to `2022-02-22` and it brings
> [breaking changes](https://developers.notion.com/changelog/releasing-notion-version-2022-02-22).
<!-- 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 @@ -87,7 +87,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.9.0",
"User-Agent": "ramnes/notion-sdk-py@1.0.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.9.0",
version="1.0.0",
url="https://github.com/ramnes/notion-sdk-py",
author="Guillaume Gelin",
author_email="[email protected]",
Expand Down

1 comment on commit fa5d3ba

@jheddings
Copy link
Contributor

@jheddings jheddings commented on fa5d3ba Apr 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sweet!! Congrats on the 1.0.0 milestone!

Please sign in to comment.