Skip to content

Commit 10dc5b3

Browse files
authored
Packages upgrades (#6)
1 parent 8d551f9 commit 10dc5b3

File tree

4 files changed

+62
-36
lines changed

4 files changed

+62
-36
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.5
2+
- Update dependencies
3+
- Longer description in pubspec.yqml
4+
- pedantic (deprecated) replaced by flutter_lints
15
## 0.6.4
26
- Fixed readme example
37
## 0.6.3

analysis_options.yaml

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,29 @@
1-
# Defines a default set of lint rules enforced for
2-
# projects at Google. For details and rationale,
3-
# see https://github.com/dart-lang/pedantic#enabled-lints.
4-
include: package:pedantic/analysis_options.yaml
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
57

6-
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
7-
# Uncomment to specify additional rules.
8-
# linter:
9-
# rules:
10-
# - camel_case_types
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
1111

12-
analyzer:
13-
# exclude:
14-
# - path/to/excluded/files/**
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at
17+
# https://dart-lang.github.io/linter/lints/index.html.
18+
#
19+
# Instead of disabling a lint rule for the entire project in the
20+
# section below, it can also be suppressed for a single line of code
21+
# or a specific dart file by using the `// ignore: name_of_lint` and
22+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
23+
# producing the lint.
24+
rules:
25+
avoid_print: false # Uncomment to disable the `avoid_print` rule
26+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27+
28+
# Additional information about this file can be found at
29+
# https://dart.dev/guides/language/analysis-options

pubspec.lock

Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "26.0.0"
10+
version: "49.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "2.3.0"
17+
version: "5.1.0"
1818
args:
1919
dependency: transitive
2020
description:
@@ -43,13 +43,6 @@ packages:
4343
url: "https://pub.dartlang.org"
4444
source: hosted
4545
version: "1.3.1"
46-
cli_util:
47-
dependency: transitive
48-
description:
49-
name: cli_util
50-
url: "https://pub.dartlang.org"
51-
source: hosted
52-
version: "0.3.5"
5346
collection:
5447
dependency: transitive
5548
description:
@@ -84,14 +77,21 @@ packages:
8477
name: ffi
8578
url: "https://pub.dartlang.org"
8679
source: hosted
87-
version: "1.1.2"
80+
version: "2.0.1"
8881
file:
8982
dependency: transitive
9083
description:
9184
name: file
9285
url: "https://pub.dartlang.org"
9386
source: hosted
9487
version: "6.1.2"
88+
flutter_lints:
89+
dependency: "direct dev"
90+
description:
91+
name: flutter_lints
92+
url: "https://pub.dartlang.org"
93+
source: hosted
94+
version: "2.0.1"
9595
frontend_server_client:
9696
dependency: transitive
9797
description:
@@ -133,7 +133,14 @@ packages:
133133
name: js
134134
url: "https://pub.dartlang.org"
135135
source: hosted
136-
version: "0.6.3"
136+
version: "0.6.4"
137+
lints:
138+
dependency: transitive
139+
description:
140+
name: lints
141+
url: "https://pub.dartlang.org"
142+
source: hosted
143+
version: "2.0.0"
137144
logging:
138145
dependency: transitive
139146
description:
@@ -182,9 +189,9 @@ packages:
182189
name: path
183190
url: "https://pub.dartlang.org"
184191
source: hosted
185-
version: "1.8.1"
192+
version: "1.8.2"
186193
pedantic:
187-
dependency: "direct dev"
194+
dependency: transitive
188195
description:
189196
name: pedantic
190197
url: "https://pub.dartlang.org"
@@ -287,21 +294,21 @@ packages:
287294
name: test
288295
url: "https://pub.dartlang.org"
289296
source: hosted
290-
version: "1.17.12"
297+
version: "1.21.6"
291298
test_api:
292299
dependency: transitive
293300
description:
294301
name: test_api
295302
url: "https://pub.dartlang.org"
296303
source: hosted
297-
version: "0.4.3"
304+
version: "0.4.14"
298305
test_core:
299306
dependency: transitive
300307
description:
301308
name: test_core
302309
url: "https://pub.dartlang.org"
303310
source: hosted
304-
version: "0.4.2"
311+
version: "0.4.18"
305312
typed_data:
306313
dependency: transitive
307314
description:
@@ -343,6 +350,6 @@ packages:
343350
name: yaml
344351
url: "https://pub.dartlang.org"
345352
source: hosted
346-
version: "3.1.0"
353+
version: "3.1.1"
347354
sdks:
348-
dart: ">=2.12.0 <3.0.0"
355+
dart: ">=2.18.0 <3.0.0"

pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rps
2-
description: Define and run scripts from pubspec.yaml.
2+
description: rps (Run Pubspec Script) allows you to define and run scripts from pubspec.yaml.
33
version: 0.6.5
44
repository: https://github.com/gonuit/rps
55
homepage: https://github.com/gonuit/rps
@@ -26,10 +26,10 @@ environment:
2626
sdk: ">=2.19.4 <4.0.0"
2727

2828
dependencies:
29-
yaml: ^3.1.0
30-
path: ^1.7.0
31-
ffi: ^1.1.2
29+
yaml: ^3.1.1
30+
path: ^1.8.2
31+
ffi: ^2.0.1
3232

3333
dev_dependencies:
34-
pedantic: ^1.9.0
35-
test: ^1.14.4
34+
flutter_lints: ^2.0.1
35+
test: ^1.21.6

0 commit comments

Comments
 (0)