Skip to content

Commit

Permalink
Bump to 3.6.0 (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunn1313 authored Apr 1, 2024
1 parent 363b350 commit 745a197
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Upcoming

## 3.6.0

- Remove 3.7 compatibility for typing_extensions.final/Literal
- Bump protobuf to 4.25.3

Expand Down
2 changes: 1 addition & 1 deletion mypy_protobuf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from google.protobuf.internal.well_known_types import WKTBASES
from . import extensions_pb2

__version__ = "3.5.0"
__version__ = "3.6.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 @@ -94,10 +94,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.5.0"
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.5.0"
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.5.0"
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.5.0"
test "$(protoc-gen-mypy -V)" = "mypy-protobuf 3.6.0"
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.6.0"
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.6.0"
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.6.0"

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

0 comments on commit 745a197

Please sign in to comment.