Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion protoc-gen-connect-python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "protoc-gen-connect-python"
version = "0.7.1"
version = "0.8.0"
description = "Code generator for connect-python"
maintainers = [
{ name = "Anuraag Agrawal", email = "anuraaga@gmail.com" },
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "connect-python"
version = "0.7.1"
version = "0.8.0"
description = "Server and client runtime library for Connect RPC"
maintainers = [
{ name = "Anuraag Agrawal", email = "anuraaga@gmail.com" },
Expand All @@ -9,7 +9,7 @@ maintainers = [
{ name = "Yasushi Itoh", email = "i2y.may.roku@gmail.com" },
]
requires-python = ">= 3.10"
dependencies = ["protobuf>=5.28", "pyqwest>=0.3.2"]
dependencies = ["protobuf>=5.28", "pyqwest>=0.3.3"]
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Sorry about this - I had to fix an issue with closing a running generator in bidi streaming which seems to only have hangs on python 3.12, maybe due to python/cpython#118272. It does mean I will need to be diligent to continue fixing any issues that may come up for users.

On the bright side I am running conformance tests on push

curioswitch/pyqwest#90

Hopefully that's ok, the docs change does have me more pumped on getting to a fully featured connect implementation

readme = "README.md"
license = "Apache-2.0"
keywords = ["rpc", "grpc", "connect", "protobuf", "http"]
Expand Down Expand Up @@ -246,7 +246,7 @@ connect-python = { workspace = true }
connect-python-example = { workspace = true }

[tool.bumpversion]
current_version = "0.7.1"
current_version = "0.8.0"
files = [
{ filename = "pyproject.toml" },
{ filename = "protoc-gen-connect-python/pyproject.toml" },
Expand Down
Loading