From b8f035c3f6c59701bc2773608d516f1f6e595d20 Mon Sep 17 00:00:00 2001 From: action Date: Tue, 1 Oct 2024 00:47:00 +0000 Subject: [PATCH] actions-dart-dependency-updater: --- CHANGELOG.md | 5 +++ example/pubspec.yaml | 78 ++++++++++++++++++++------------------------ pubspec.yaml | 4 +-- 3 files changed, 43 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eefb64..1989927 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [3.0.1+3] - October 1, 2024 + +* Automated dependency updates + + ## [3.0.1+2] - July 23, 2024 * Automated dependency updates diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 666f53b..0552b19 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -1,55 +1,49 @@ -name: websafe_svg_example -description: Example for the Websafe SVG -version: 1.0.0 +name: 'websafe_svg_example' +description: 'Example for the Websafe SVG' +version: '1.0.0+1' +publish_to: 'none' -publish_to: none - -environment: +environment: sdk: '>=3.0.0 <4.0.0' -dependencies: - flutter: - sdk: flutter - websafe_svg: - path: ../ +dependencies: + flutter: + sdk: 'flutter' + websafe_svg: + path: '../' -dev_dependencies: - flutter_lints: '^4.0.0' - flutter_test: - sdk: flutter +dev_dependencies: + flutter_lints: '^5.0.0' + flutter_test: + sdk: 'flutter' -flutter: +flutter: uses-material-design: true - assets: - - assets/all.json - - assets/svgs/ + assets: + - 'assets/all.json' + - 'assets/svgs/' -permittedLicenses: - - Apache-2.0 - - BSD-2-Clause - - BSD-3-Clause - - MIT - - MIT-Modern-Variant - - MPL-2.0 - - Zlib +permittedLicenses: + - 'Apache-2.0' + - 'BSD-2-Clause' + - 'BSD-3-Clause' + - 'MIT' + - 'MIT-Modern-Variant' + - 'MPL-2.0' + - 'Zlib' -# The [license_checker](https://pub.dev/packages/license_checker) package cannot -# detect the built in Flutter packages because they aren't published to pub.dev -# and do not have a LICENSE file in their respective folders. So this section -# informs the license_checker that all the built in Flutter packages all have -# the same BSD-3-Clause license as Flutter itself. packageLicenseOverride: - flutter: BSD-3-Clause - flutter_driver: BSD-3-Clause - flutter_goldens: BSD-3-Clause - flutter_localizations: BSD-3-Clause - flutter_web_plugins: BSD-3-Clause - flutter_test: BSD-3-Clause - fuchsia_remote_debug_protocol: BSD-3-Clause - integration_test: BSD-3-Clause - rxdart: Apache-2.0 + flutter: 'BSD-3-Clause' + flutter_driver: 'BSD-3-Clause' + flutter_goldens: 'BSD-3-Clause' + flutter_localizations: 'BSD-3-Clause' + flutter_web_plugins: 'BSD-3-Clause' + flutter_test: 'BSD-3-Clause' + fuchsia_remote_debug_protocol: 'BSD-3-Clause' + integration_test: 'BSD-3-Clause' + rxdart: 'Apache-2.0' -ignore_updates: +ignore_updates: - 'archive' - 'async' - 'boolean_selector' diff --git a/pubspec.yaml b/pubspec.yaml index 6b8827e..68a9465 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: 'websafe_svg' description: 'Simple abstraction to be able to use SVGs in Android, iOS, and Web.' -version: '3.0.1+2' +version: '3.0.1+3' homepage: 'https://github.com/peiffer-innovations/websafe_svg' environment: @@ -16,7 +16,7 @@ dependencies: meta: '^1.12.0' dev_dependencies: - flutter_lints: '^4.0.0' + flutter_lints: '^5.0.0' flutter_test: sdk: 'flutter'