Skip to content

Commit dc8bef8

Browse files
author
Rohan
committed
chore: version update
1 parent 6c557d6 commit dc8bef8

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
build:
1717
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
1818
with:
19-
flutter_channel: stable
20-
flutter_version: 3.7.7
19+
flutter_channel: 'stable'
20+
flutter_version: '3.13.2'
2121
min_coverage: 80

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
2020
version: 1.0.0+1
2121

2222
environment:
23-
sdk: '>=2.18.0 <3.0.0'
23+
sdk: '>=3.0.0 <4.0.0'
2424

2525
# Dependencies specify other packages that your package needs in order to work.
2626
# To automatically upgrade your package dependencies to the latest versions

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ screenshots:
77
path: demo.png
88

99
environment:
10-
sdk: ">=2.18.0 <3.0.0"
10+
sdk: '>=3.0.0 <4.0.0'
1111
flutter: ">=3.3.7"
1212

1313
dependencies:

test/src/typeset_test.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ void main() {
9393
TextSpan(
9494
text: 'bold',
9595
style: TextStyle(),
96-
)
96+
),
9797
];
9898
expect(
9999
TypesetParser.parseText(inputText: inputText),
@@ -121,7 +121,7 @@ void main() {
121121
TextSpan(
122122
text: 'italic',
123123
style: TextStyle(),
124-
)
124+
),
125125
];
126126
expect(
127127
TypesetParser.parseText(inputText: inputText),
@@ -149,7 +149,7 @@ void main() {
149149
TextSpan(
150150
text: 'underlined',
151151
style: TextStyle(),
152-
)
152+
),
153153
];
154154
expect(
155155
TypesetParser.parseText(inputText: inputText),
@@ -177,7 +177,7 @@ void main() {
177177
TextSpan(
178178
text: 'strikethrough',
179179
style: TextStyle(),
180-
)
180+
),
181181
];
182182
expect(
183183
TypesetParser.parseText(inputText: inputText),

0 commit comments

Comments
 (0)