Skip to content

Commit 18a1fca

Browse files
authored
Merge pull request #167 from mZadorskii/feature/bump-sdks-and-deps
Bumped SDK Version and dependencies
2 parents b8cf574 + 3cf15d5 commit 18a1fca

21 files changed

+84
-84
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
language: dart
1+
os:
2+
- linux
23
sudo: false
4+
addons:
5+
apt:
6+
sources:
7+
- ubuntu-toolchain-r-test
8+
packages:
9+
- libstdc++6
10+
- fonts-droid-fallback
311
before_script:
412
- git clone https://github.com/flutter/flutter.git -b stable --depth 1
513
- ./flutter/bin/flutter doctor
@@ -23,4 +31,4 @@ after_success:
2331
- bash <(curl -s https://codecov.io/bash)
2432
cache:
2533
directories:
26-
- $HOME/.pub-cache
34+
- $HOME/.pub-cache

packages/golden_toolkit/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.14.0
4+
5+
- Updated to Dart 2.18 and newer dependencies
6+
37
## 0.13.0
48

59
- Updated to Flutter 2.8 / Dart 2.15

packages/golden_toolkit/example/pubspec.lock

Lines changed: 22 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.8.2"
10+
version: "2.9.0"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
@@ -21,35 +21,28 @@ packages:
2121
name: characters
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.2.0"
25-
charcode:
26-
dependency: transitive
27-
description:
28-
name: charcode
29-
url: "https://pub.dartlang.org"
30-
source: hosted
31-
version: "1.3.1"
24+
version: "1.2.1"
3225
clock:
3326
dependency: transitive
3427
description:
3528
name: clock
3629
url: "https://pub.dartlang.org"
3730
source: hosted
38-
version: "1.1.0"
31+
version: "1.1.1"
3932
collection:
4033
dependency: transitive
4134
description:
4235
name: collection
4336
url: "https://pub.dartlang.org"
4437
source: hosted
45-
version: "1.15.0"
38+
version: "1.16.0"
4639
fake_async:
4740
dependency: transitive
4841
description:
4942
name: fake_async
5043
url: "https://pub.dartlang.org"
5144
source: hosted
52-
version: "1.2.0"
45+
version: "1.3.1"
5346
flutter:
5447
dependency: "direct main"
5548
description: flutter
@@ -73,7 +66,7 @@ packages:
7366
path: ".."
7467
relative: true
7568
source: path
76-
version: "0.13.0"
69+
version: "0.14.0"
7770
lints:
7871
dependency: transitive
7972
description:
@@ -87,21 +80,28 @@ packages:
8780
name: matcher
8881
url: "https://pub.dartlang.org"
8982
source: hosted
90-
version: "0.12.11"
83+
version: "0.12.12"
84+
material_color_utilities:
85+
dependency: transitive
86+
description:
87+
name: material_color_utilities
88+
url: "https://pub.dartlang.org"
89+
source: hosted
90+
version: "0.1.5"
9191
meta:
9292
dependency: transitive
9393
description:
9494
name: meta
9595
url: "https://pub.dartlang.org"
9696
source: hosted
97-
version: "1.7.0"
97+
version: "1.8.0"
9898
path:
9999
dependency: transitive
100100
description:
101101
name: path
102102
url: "https://pub.dartlang.org"
103103
source: hosted
104-
version: "1.8.0"
104+
version: "1.8.2"
105105
sky_engine:
106106
dependency: transitive
107107
description: flutter
@@ -113,7 +113,7 @@ packages:
113113
name: source_span
114114
url: "https://pub.dartlang.org"
115115
source: hosted
116-
version: "1.8.1"
116+
version: "1.9.0"
117117
stack_trace:
118118
dependency: transitive
119119
description:
@@ -134,34 +134,27 @@ packages:
134134
name: string_scanner
135135
url: "https://pub.dartlang.org"
136136
source: hosted
137-
version: "1.1.0"
137+
version: "1.1.1"
138138
term_glyph:
139139
dependency: transitive
140140
description:
141141
name: term_glyph
142142
url: "https://pub.dartlang.org"
143143
source: hosted
144-
version: "1.2.0"
144+
version: "1.2.1"
145145
test_api:
146146
dependency: transitive
147147
description:
148148
name: test_api
149149
url: "https://pub.dartlang.org"
150150
source: hosted
151-
version: "0.4.3"
152-
typed_data:
153-
dependency: transitive
154-
description:
155-
name: typed_data
156-
url: "https://pub.dartlang.org"
157-
source: hosted
158-
version: "1.3.0"
151+
version: "0.4.12"
159152
vector_math:
160153
dependency: transitive
161154
description:
162155
name: vector_math
163156
url: "https://pub.dartlang.org"
164157
source: hosted
165-
version: "2.1.1"
158+
version: "2.1.2"
166159
sdks:
167-
dart: ">=2.15.0 <3.0.0"
160+
dart: ">=2.18.4 <3.0.0"

packages/golden_toolkit/example/test/example_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ class FutureWidgetTester extends StatefulWidget {
209209
final Widget child;
210210
final Duration duration;
211211
@override
212-
_FutureWidgetTesterState createState() => _FutureWidgetTesterState();
212+
State<FutureWidgetTester> createState() => _FutureWidgetTesterState();
213213
}
214214

215215
class _FutureWidgetTesterState extends State<FutureWidgetTester> {
-3 Bytes
Loading
1 Byte
Loading
132 Bytes
Loading
-1.12 KB
Loading
-451 Bytes
Loading
-472 Bytes
Loading

0 commit comments

Comments
 (0)