Skip to content
Open
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 CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Upcoming
## 3.8.0

- Drop support for `py_generic_services` as it was removed from the protobuf compiler starting in version 6.30
- https://protobuf.dev/news/2024-10-02/#rpc-service-interfaces
Expand Down
2 changes: 1 addition & 1 deletion mypy_protobuf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

from . import extensions_pb2

__version__ = "3.7.0"
__version__ = "3.8.0"

# SourceCodeLocation is defined by `message Location` here
# https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/descriptor.proto
Expand Down
8 changes: 4 additions & 4 deletions run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ MYPY_PROTOBUF_VENV=venv_$PY_VER_MYPY_PROTOBUF
source "$MYPY_PROTOBUF_VENV"/bin/activate

# Confirm version number
test "$(protoc-gen-mypy -V)" = "mypy-protobuf 3.7.0"
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.7.0"
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.7.0"
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.7.0"
test "$(protoc-gen-mypy -V)" = "mypy-protobuf 3.8.0"
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.8.0"
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.8.0"
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.8.0"

# Run mypy on mypy-protobuf internal code for developers to catch issues
FILES="mypy_protobuf/main.py"
Expand Down
Loading