Skip to content

Commit

Permalink
Prepare for stable v3 release (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Feb 11, 2021
1 parent 7e8952c commit def1a19
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ on:
- cron: "0 0 * * 0"

jobs:
# Check code formating and static analysis on a single OS (linux)
# Check code formatting and static analysis on a single OS (linux)
# against Dart dev.
analyze:
runs-on: ubuntu-latest
strategy:
matrix:
sdk: [dev]
sdk: [dev, beta]
steps:
- uses: actions/checkout@v2
- uses: cedx/setup-dart@v2
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
sdk: [dev]
sdk: [dev, beta]
platform: [vm, chrome]
exclude:
# We only run Chrome tests on Linux. No need to run them
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0.0-nullsafety.0
## 3.0.0

* Migrate library and tests to null safety.
* Require Dart 2.12 or greater.

## 2.9.0

Expand Down
28 changes: 14 additions & 14 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
name: grpc
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.

version: 3.0.0-nullsafety.0
version: 3.0.0

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

environment:
sdk: '>=2.12.0-0 <3.0.0'

dependencies:
archive: ^3.0.0-nullsafety
async: ^2.5.0-nullsafety.0
crypto: ^3.0.0-nullsafety
fixnum: ^1.0.0-nullsafety
googleapis_auth: ^1.0.0-nullsafety.0
meta: ^1.3.0-nullsafety.0
http: ^0.13.0-nullsafety.0
http2: ^2.0.0-nullsafety
protobuf: ^2.0.0-nullsafety.1
archive: ^3.0.0
async: ^2.5.0
crypto: ^3.0.0
fixnum: ^1.0.0
googleapis_auth: ^1.0.0
meta: ^1.3.0
http: ^0.13.0
http2: ^2.0.0
protobuf: ^2.0.0

dev_dependencies:
build_runner: ^1.11.0
build_test: ^1.3.4
mockito: ^5.0.0-nullsafety.6
path: ^1.8.0-nullsafety.3
test: ^1.16.0-nullsafety.16
stream_channel: ^2.1.0-nullsafety.3
stream_transform: ^2.0.0-nullsafety
path: ^1.8.0
test: ^1.16.0
stream_channel: ^2.1.0
stream_transform: ^2.0.0

0 comments on commit def1a19

Please sign in to comment.