Skip to content

Commit f19c0ae

Browse files
authored
Bump to release 3.3.0 (#401)
1 parent 9a12c13 commit f19c0ae

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Upcoming
22

3+
## 3.3.0
4+
35
- Prefer (mypy_protobuf.options).casttype to (mypy_protobuf.casttype)
46
- Allows us to use a single extension number
57
- Applies to casttype,keytype,valuetype

mypy_protobuf/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from google.protobuf.internal.well_known_types import WKTBASES
2525
from . import extensions_pb2
2626

27-
__version__ = "3.2.0"
27+
__version__ = "3.3.0"
2828

2929
# SourceCodeLocation is defined by `message Location` here
3030
# https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/descriptor.proto

run_test.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ MYPY_PROTOBUF_VENV=venv_$PY_VER_MYPY_PROTOBUF
9393
source $MYPY_PROTOBUF_VENV/bin/activate
9494

9595
# Confirm version number
96-
test "$(protoc-gen-mypy -V)" = "mypy-protobuf 3.2.0"
97-
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.2.0"
98-
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.2.0"
99-
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.2.0"
96+
test "$(protoc-gen-mypy -V)" = "mypy-protobuf 3.3.0"
97+
test "$(protoc-gen-mypy --version)" = "mypy-protobuf 3.3.0"
98+
test "$(protoc-gen-mypy_grpc -V)" = "mypy-protobuf 3.3.0"
99+
test "$(protoc-gen-mypy_grpc --version)" = "mypy-protobuf 3.3.0"
100100

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

0 commit comments

Comments
 (0)