Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit 8477576

Browse files
authored
Merge pull request #273 from supabase-community/j0/release_1_0_2
feat: update README, release v1.0.2
2 parents 29fb30b + a0a0d79 commit 8477576

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ Also, the `gotrue` library for Python parses the date-time string into `datetime
5555
To instantiate the client, you'll need the URL and any request headers at a minimum.
5656

5757
```python
58-
from gotrue import Client
58+
from gotrue import SyncGoTrueClient
5959

6060
headers = {
6161
"apiKey": "my-mega-awesome-api-key",
6262
# ... any other headers you might need.
6363
}
64-
client: Client = Client(url="www.genericauthwebsite.com", headers=headers)
64+
client: SyncGoTrueClient = SyncGoTrueClient(url="www.genericauthwebsite.com", headers=headers)
6565
```
6666

6767
To send a magic email link to the user, just provide the email kwarg to the `sign_in` method:
@@ -96,6 +96,3 @@ assert client.session() is not None
9696
## Contributions
9797

9898
We would be immensely grateful for any contributions to this project. In particular are the following items:
99-
100-
- Add documentation
101-
- Update `README.md`

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "gotrue"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "Python Client Library for GoTrue"
55
authors = ["Joel Lee <[email protected]>"]
66
homepage = "https://github.com/supabase-community/gotrue-py"

0 commit comments

Comments
 (0)