Skip to content

Commit 6eaeaef

Browse files
authored
Merge pull request #28 from rohanjsh/chore/version-update
chore: version update
2 parents 6c557d6 + 856d8f5 commit 6eaeaef

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
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

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
# Changelog
33

4+
# 1.0.2
5+
- chore: update dependencies, ci flows
6+
47
# 1.0.1+1
58
- feat: 3 new properties added `linkStyle`, `monospaceStyle`, `recognizer` 💙
69
# 1.0.0+4

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: typeset
22
description: WhatsApp like text formatting for you! -> Bold, Italic, Underline
3-
version: 1.0.1+1
3+
version: 1.0.2
44
repository: https://github.com/rohanjsh/typeset/
55
screenshots:
66
- description: "Examples of the typeset formatters"
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)