From 745a1977fc06e1e9eb59afbc4b90e4abf1f4858d Mon Sep 17 00:00:00 2001 From: Nipunn Koorapati Date: Mon, 1 Apr 2024 13:10:48 -0700 Subject: [PATCH] Bump to 3.6.0 (#584) --- CHANGELOG.md | 2 ++ mypy_protobuf/main.py | 2 +- run_test.sh | 8 ++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d764895..fe39a0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Upcoming +## 3.6.0 + - Remove 3.7 compatibility for typing_extensions.final/Literal - Bump protobuf to 4.25.3 diff --git a/mypy_protobuf/main.py b/mypy_protobuf/main.py index 76913f1c..576b5dda 100644 --- a/mypy_protobuf/main.py +++ b/mypy_protobuf/main.py @@ -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 diff --git a/run_test.sh b/run_test.sh index 401d089f..01c49305 100755 --- a/run_test.sh +++ b/run_test.sh @@ -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"