Skip to content

Commit 9a0b464

Browse files
authored
Allow 4.0.0 version for protobuf dependency and prepare to release 4.0.3 (#774)
Fixes #768
1 parent f077328 commit 9a0b464

File tree

8 files changed

+17
-13
lines changed

8 files changed

+17
-13
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.0.3
2+
3+
* Widen `package:protobuf` constraint to allow version 4.0.0.
4+
15
## 4.0.2
26

37
* Internal optimization to client code.

example/googleapis/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ description: Dart gRPC client sample for Google APIs
33
publish_to: none
44

55
environment:
6-
sdk: '>=2.12.0 <3.0.0'
6+
sdk: ">=2.12.0 <3.0.0"
77

88
dependencies:
99
async: ^2.2.0
1010
fixnum:
1111
grpc:
1212
path: ../../
13-
protobuf: ^3.0.0
13+
protobuf: ">=3.0.0 <5.0.0"
1414

1515
dev_dependencies:
1616
lints: ^2.0.0

example/grpc-web/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
dependencies:
99
grpc:
1010
path: ../../
11-
protobuf: ^3.0.0
11+
protobuf: ">=3.0.0 <5.0.0"
1212
web: ^1.1.0
1313

1414
dev_dependencies:

example/helloworld/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
33
publish_to: none
44

55
environment:
6-
sdk: '>=2.12.0 <3.0.0'
6+
sdk: ">=2.12.0 <3.0.0"
77

88
dependencies:
99
async: ^2.2.0
1010
grpc:
1111
path: ../../
12-
protobuf: ^3.0.0
12+
protobuf: ">=3.0.0 <5.0.0"
1313

1414
dev_dependencies:
1515
lints: ^2.0.0

example/metadata/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
33
publish_to: none
44

55
environment:
6-
sdk: '>=2.12.0 <3.0.0'
6+
sdk: ">=2.12.0 <3.0.0"
77

88
dependencies:
99
async: ^2.2.0
1010
grpc:
1111
path: ../../
12-
protobuf: ^3.0.0
12+
protobuf: ">=3.0.0 <5.0.0"
1313

1414
dev_dependencies:
1515
lints: ^2.0.0

example/route_guide/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
33
publish_to: none
44

55
environment:
6-
sdk: '>=2.12.0 <3.0.0'
6+
sdk: ">=2.12.0 <3.0.0"
77

88
dependencies:
99
async: ^2.2.0
1010
grpc:
1111
path: ../../
12-
protobuf: ^3.0.0
12+
protobuf: ">=3.0.0 <5.0.0"
1313
collection: ^1.15.0-nullsafety.4
1414

1515
dev_dependencies:

interop/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
collection: ^1.14.11
1212
grpc:
1313
path: ../
14-
protobuf: ^3.0.0
14+
protobuf: ">=3.0.0 <5.0.0"
1515

1616
dev_dependencies:
1717
test: ^1.16.0

pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: grpc
2-
version: 4.0.2
2+
version: 4.0.3
33
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
44
repository: https://github.com/grpc/grpc-dart
55

@@ -17,9 +17,9 @@ dependencies:
1717
fixnum: ^1.0.0
1818
googleapis_auth: ^1.1.0
1919
meta: ^1.3.0
20-
http: '>=0.13.0 <2.0.0'
20+
http: ">=0.13.0 <2.0.0"
2121
http2: ^2.2.0
22-
protobuf: '>=2.0.0 <4.0.0'
22+
protobuf: ">=2.0.0 <5.0.0"
2323
clock: ^1.1.1
2424
web: ^1.1.0
2525

0 commit comments

Comments
 (0)