Skip to content
Merged
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.0.3

* Widen `package:protobuf` constraint to allow version 4.0.0.

## 4.0.2

* Internal optimization to client code.
Expand Down
4 changes: 2 additions & 2 deletions example/googleapis/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ description: Dart gRPC client sample for Google APIs
publish_to: none

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.12.0 <3.0.0"

dependencies:
async: ^2.2.0
fixnum:
grpc:
path: ../../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"

dev_dependencies:
lints: ^2.0.0
Expand Down
2 changes: 1 addition & 1 deletion example/grpc-web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ environment:
dependencies:
grpc:
path: ../../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"
web: ^1.1.0

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions example/helloworld/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
publish_to: none

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.12.0 <3.0.0"

dependencies:
async: ^2.2.0
grpc:
path: ../../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"

dev_dependencies:
lints: ^2.0.0
4 changes: 2 additions & 2 deletions example/metadata/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
publish_to: none

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.12.0 <3.0.0"

dependencies:
async: ^2.2.0
grpc:
path: ../../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"

dev_dependencies:
lints: ^2.0.0
Expand Down
4 changes: 2 additions & 2 deletions example/route_guide/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ description: Dart gRPC sample client and server.
publish_to: none

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.12.0 <3.0.0"

dependencies:
async: ^2.2.0
grpc:
path: ../../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"
collection: ^1.15.0-nullsafety.4

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion interop/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
collection: ^1.14.11
grpc:
path: ../
protobuf: ^3.0.0
protobuf: ">=3.0.0 <5.0.0"

dev_dependencies:
test: ^1.16.0
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: grpc
version: 4.0.2
version: 4.0.3
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
repository: https://github.com/grpc/grpc-dart

Expand All @@ -17,9 +17,9 @@ dependencies:
fixnum: ^1.0.0
googleapis_auth: ^1.1.0
meta: ^1.3.0
http: '>=0.13.0 <2.0.0'
http: ">=0.13.0 <2.0.0"
http2: ^2.2.0
protobuf: '>=2.0.0 <4.0.0'
protobuf: ">=2.0.0 <5.0.0"
clock: ^1.1.1
web: ^1.1.0

Expand Down