Skip to content

Commit

Permalink
Merge pull request #54 from The-Redhat/update_http_and_uuid_dependency
Browse files Browse the repository at this point in the history
update http and uuid dependency
  • Loading branch information
santitigaga authored Oct 25, 2023
2 parents 874f174 + dc6fda8 commit 5e5620d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
uses: flutter-actions/setup-flutter@v2
with:
channel: stable
version: 3.7.12
version: 3.13.8
- name: Install dependencies
run: dart pub get
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: flutter-actions/setup-flutter@v2
with:
channel: stable
version: 3.7.12
version: 3.13.8
- name: Install dependencies
run: dart pub get
- name: Publish to pub.dev
Expand Down
3 changes: 0 additions & 3 deletions example/analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ analyzer:
# to be shown and need only the CLI, you need to remove the section below.
plugins:
- dart_code_linter
strong-mode:
implicit-casts: false
implicit-dynamic: false

dart_code_linter:
# Dart Code Linter supports presets. The config from a preset will be merged
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class _MyHomePageState extends State<MyHomePage> {
),
Text(
'$_counter',
style: Theme.of(context).textTheme.headline4,
style: Theme.of(context).textTheme.headlineMedium,
),
UnusedCodeWidget(),
UnnecessaryNullableWidget(),
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1

environment:
sdk: ">=2.18.2 <3.0.0"
sdk: ">=3.0.0 <4.0.0"

dependencies:
flutter:
Expand Down
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,30 @@ description: Dart Code Linter is a software analytics tool that helps developers
repository: https://github.com/bancolombia/dart-code-linter

environment:
sdk: ">=2.18.0 <4.0.0"
sdk: ">=3.0.0 <4.0.0"

platforms:
linux:
windows:
macos:

dependencies:
analyzer: ">=5.1.0 <5.14.0"
analyzer_plugin: ">=0.11.0 <0.12.0"
analyzer: ^6.0.0
analyzer_plugin: ^0.11.0
ansicolor: ^2.0.1
args: ^2.0.0
collection: ^1.16.0
crypto: ^3.0.0
file: ^6.0.0
glob: ^2.0.1
html: ">=0.15.0 <1.0.0"
http: ^0.13.5
html: ^0.15.0
http: ^1.1.0
meta: ^1.7.0
path: ^1.8.0
platform: ^3.1.0 # overridden for lowest versions compatibility
pub_updater: ^0.3.0
source_span: ^1.8.0
uuid: ^3.0.7
source_span: ^1.10.0
uuid: ^4.1.0
xml: ">=5.3.0 <7.0.0"
yaml: ^3.1.0

Expand Down

0 comments on commit 5e5620d

Please sign in to comment.