Skip to content

Commit

Permalink
Merge pull request #709 from Workiva/batch/client_platform/up_dart_sd…
Browse files Browse the repository at this point in the history
…k_minimum_to_2.11

Raise the Dart SDK minimum to at least 2.11.0
  • Loading branch information
rmconsole6-wk authored Sep 21, 2021
2 parents 81e3719 + 0f8c72a commit 4c7f413
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dart_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [ 2.7.2, 2.13.4, stable, dev ]
sdk: [ 2.13.4, stable, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
Expand All @@ -40,7 +40,7 @@ jobs:
# Analyze before generated files are created to verify that component boilerplate analysis is "clean" without the need for building
- name: Analyze example source (pre-build)
run: |
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
# Analyze lib to ensure public APIs don't depend on build-to-cache files,
# which could cause analysis issues for consumers who haven't run a build yet.
dartanalyzer lib
cd example/boilerplate_versions
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
sdk: [ 2.7.2, 2.13.4, stable, dev ]
sdk: [ 2.13.4, stable, dev ]
steps:
- uses: actions/checkout@v2
- uses: dart-lang/setup-dart@v0.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM google/dart:2.7
FROM google/dart:2.13

# Expose env vars for git ssh access
ARG GIT_SSH_KEY
Expand Down
2 changes: 1 addition & 1 deletion app/over_react_redux/todo_client/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: todo_client
version: 1.0.0

environment:
sdk: ">=2.7.0 <3.0.0"
sdk: ">=2.11.0 <3.0.0"

dependencies:
color: any
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 4.2.2
description: A library for building statically-typed React UI components using Dart.
homepage: https://github.com/Workiva/over_react/
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"

dependencies:
collection: ^1.14.11
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzer_plugin/playground/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: plugin_playground
version: 0.0.0
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"
dependencies:
over_react: ^3.5.3
dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tools/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish_to: none
description: Dart analyzer plugin for OverReact
repository: https://github.com/Workiva/over_react/tree/master/tools/analyzer_plugin
environment:
sdk: '>=2.7.0 <3.0.0'
sdk: ">=2.11.0 <3.0.0"
dependencies:
analyzer: ">=0.39.10 <0.42.0"
analyzer_plugin: '^0.2.4'
Expand Down

0 comments on commit 4c7f413

Please sign in to comment.