Skip to content

Commit 206e3c4

Browse files
thomasballingerConvex, Inc
authored and
Convex, Inc
committed
Updates to convex-py
GitOrigin-RevId: 7f89791e15afbb8cf89672550b9897610893e376
1 parent 8aa296b commit 206e3c4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ client, moved to `convex.http_client`.
1212

1313
One big change is that running a `client.query()` or mutation or action will
1414
retry on network errors instead of throwing. If you were catching network errors
15-
to implement retries in your code you should be able to get rid of this The new
16-
Convex client will retry indefinitely.
15+
to implement retries in your code you should be able to get rid of this code.
16+
The Convex Python client will retry indefinitely.
1717

1818
# 0.5.1
1919

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "convex"
7-
version = "0.6.0a2" # Also update in __init__.py
7+
version = "0.6.0" # Also update in __init__.py
88
description = "Python client for the reactive backend-as-a-service Convex."
99
authors = [
1010
{ name = "Convex, Inc", email = "[email protected]" },
@@ -35,7 +35,7 @@ features = ["pyo3/extension-module"]
3535
# We publish with maturin which uses the [project] metadata above
3636
# but these three fields are required just to be able to use poetry.
3737
name = "convex"
38-
version = "0.6.0a2" # Also update in __init__.py
38+
version = "0.6.0" # Also update in __init__.py
3939
description = "Python client for the reactive backend-as-a-service Convex."
4040
authors = ["Convex, Inc. <[email protected]>"]
4141

python/convex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"ConvexInt64",
4040
]
4141

42-
__version__ = "0.6.0a2" # Also update in pyproject.toml
42+
__version__ = "0.6.0" # Also update in pyproject.toml
4343

4444

4545
class ConvexError(Exception):

0 commit comments

Comments
 (0)