Skip to content

Commit def1a19

Browse files
authored
Prepare for stable v3 release (#452)
1 parent 7e8952c commit def1a19

File tree

3 files changed

+19
-18
lines changed

3 files changed

+19
-18
lines changed

.github/workflows/dart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ on:
1010
- cron: "0 0 * * 0"
1111

1212
jobs:
13-
# Check code formating and static analysis on a single OS (linux)
13+
# Check code formatting and static analysis on a single OS (linux)
1414
# against Dart dev.
1515
analyze:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
sdk: [dev]
19+
sdk: [dev, beta]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- uses: cedx/setup-dart@v2
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
os: [ubuntu-latest, macos-latest, windows-latest]
53-
sdk: [dev]
53+
sdk: [dev, beta]
5454
platform: [vm, chrome]
5555
exclude:
5656
# We only run Chrome tests on Linux. No need to run them

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 3.0.0-nullsafety.0
1+
## 3.0.0
22

33
* Migrate library and tests to null safety.
4+
* Require Dart 2.12 or greater.
45

56
## 2.9.0
67

pubspec.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name: grpc
22
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
33

4-
version: 3.0.0-nullsafety.0
4+
version: 3.0.0
55

66
repository: https://github.com/grpc/grpc-dart
77

88
environment:
99
sdk: '>=2.12.0-0 <3.0.0'
1010

1111
dependencies:
12-
archive: ^3.0.0-nullsafety
13-
async: ^2.5.0-nullsafety.0
14-
crypto: ^3.0.0-nullsafety
15-
fixnum: ^1.0.0-nullsafety
16-
googleapis_auth: ^1.0.0-nullsafety.0
17-
meta: ^1.3.0-nullsafety.0
18-
http: ^0.13.0-nullsafety.0
19-
http2: ^2.0.0-nullsafety
20-
protobuf: ^2.0.0-nullsafety.1
12+
archive: ^3.0.0
13+
async: ^2.5.0
14+
crypto: ^3.0.0
15+
fixnum: ^1.0.0
16+
googleapis_auth: ^1.0.0
17+
meta: ^1.3.0
18+
http: ^0.13.0
19+
http2: ^2.0.0
20+
protobuf: ^2.0.0
2121

2222
dev_dependencies:
2323
build_runner: ^1.11.0
2424
build_test: ^1.3.4
2525
mockito: ^5.0.0-nullsafety.6
26-
path: ^1.8.0-nullsafety.3
27-
test: ^1.16.0-nullsafety.16
28-
stream_channel: ^2.1.0-nullsafety.3
29-
stream_transform: ^2.0.0-nullsafety
26+
path: ^1.8.0
27+
test: ^1.16.0
28+
stream_channel: ^2.1.0
29+
stream_transform: ^2.0.0

0 commit comments

Comments
 (0)