mirror of https://github.com/grpc/grpc-dart.git
Prepare for stable v3 release (#452)
This commit is contained in:
parent
7e8952c352
commit
def1a19339
|
|
@ -10,13 +10,13 @@ on:
|
||||||
- cron: "0 0 * * 0"
|
- cron: "0 0 * * 0"
|
||||||
|
|
||||||
jobs:
|
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.
|
# against Dart dev.
|
||||||
analyze:
|
analyze:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
sdk: [dev]
|
sdk: [dev, beta]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: cedx/setup-dart@v2
|
- uses: cedx/setup-dart@v2
|
||||||
|
|
@ -50,7 +50,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||||
sdk: [dev]
|
sdk: [dev, beta]
|
||||||
platform: [vm, chrome]
|
platform: [vm, chrome]
|
||||||
exclude:
|
exclude:
|
||||||
# We only run Chrome tests on Linux. No need to run them
|
# We only run Chrome tests on Linux. No need to run them
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
## 3.0.0-nullsafety.0
|
## 3.0.0
|
||||||
|
|
||||||
* Migrate library and tests to null safety.
|
* Migrate library and tests to null safety.
|
||||||
|
* Require Dart 2.12 or greater.
|
||||||
|
|
||||||
## 2.9.0
|
## 2.9.0
|
||||||
|
|
||||||
|
|
|
||||||
28
pubspec.yaml
28
pubspec.yaml
|
|
@ -1,7 +1,7 @@
|
||||||
name: grpc
|
name: grpc
|
||||||
description: Dart implementation of gRPC, a high performance, open-source universal RPC framework.
|
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
|
repository: https://github.com/grpc/grpc-dart
|
||||||
|
|
||||||
|
|
@ -9,21 +9,21 @@ environment:
|
||||||
sdk: '>=2.12.0-0 <3.0.0'
|
sdk: '>=2.12.0-0 <3.0.0'
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
archive: ^3.0.0-nullsafety
|
archive: ^3.0.0
|
||||||
async: ^2.5.0-nullsafety.0
|
async: ^2.5.0
|
||||||
crypto: ^3.0.0-nullsafety
|
crypto: ^3.0.0
|
||||||
fixnum: ^1.0.0-nullsafety
|
fixnum: ^1.0.0
|
||||||
googleapis_auth: ^1.0.0-nullsafety.0
|
googleapis_auth: ^1.0.0
|
||||||
meta: ^1.3.0-nullsafety.0
|
meta: ^1.3.0
|
||||||
http: ^0.13.0-nullsafety.0
|
http: ^0.13.0
|
||||||
http2: ^2.0.0-nullsafety
|
http2: ^2.0.0
|
||||||
protobuf: ^2.0.0-nullsafety.1
|
protobuf: ^2.0.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
build_runner: ^1.11.0
|
build_runner: ^1.11.0
|
||||||
build_test: ^1.3.4
|
build_test: ^1.3.4
|
||||||
mockito: ^5.0.0-nullsafety.6
|
mockito: ^5.0.0-nullsafety.6
|
||||||
path: ^1.8.0-nullsafety.3
|
path: ^1.8.0
|
||||||
test: ^1.16.0-nullsafety.16
|
test: ^1.16.0
|
||||||
stream_channel: ^2.1.0-nullsafety.3
|
stream_channel: ^2.1.0
|
||||||
stream_transform: ^2.0.0-nullsafety
|
stream_transform: ^2.0.0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue