Skip to content

Commit 90744a2

Browse files
nipunn1313Convex, Inc.
authored andcommitted
Release convex-py 0.7.0 (#32299)
Releasing python client 0.7.0 - see changelog GitOrigin-RevId: d68e07c330953dfd69f682a8b9d07873a160e5df
1 parent dda8c4b commit 90744a2

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Upcoming
22

3+
# 0.7.0
4+
5+
- Add async iterator support to query subscription (Thanks byin)
36
- Don't set global log level
7+
- Bump pyo3, url, convex-rs, and other dependencies
8+
- Switch to a default native-tls-vendored
9+
- Configure Convex-Client header
410

511
# 0.6.0
612

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.0" # Also update in __init__.py
7+
version = "0.7.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.0" # Also update in __init__.py
38+
version = "0.7.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
license = "Apache-2.0"

python/convex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"ConvexInt64",
3737
]
3838

39-
__version__ = "0.6.0" # Also update in pyproject.toml
39+
__version__ = "0.7.0" # Also update in pyproject.toml
4040

4141

4242
class ConvexError(Exception):

0 commit comments

Comments
 (0)