From 565fd1adbf3442860851571cf83d4071790b92cf Mon Sep 17 00:00:00 2001 From: Edmon Marine Clota Date: Wed, 30 Jun 2021 17:30:54 -0400 Subject: [PATCH 1/2] Upgrade args dependency --- CHANGELOG.md | 4 ++++ README.md | 4 ++++ pubspec.yaml | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5518748d63..78900d89fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.9.1 (30th Jun 2021) + +- Upgrade args dependency to ^2.1.1 + ## 0.9.0 (28th Feb 2021) - Null-safety support added (thanks to @SteveAlexander) diff --git a/README.md b/README.md index c9aea80021..127d85e080 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,10 @@ A command-line tool which simplifies the task of updating your Flutter app's lau ## :sparkles: What's New +### 0.9.1 (30th Jun 2021) + +- Upgrade args dependency to ^2.1.1 + #### Version 0.9.0 (28th Feb 2021) - Null-safety support added (thanks to @SteveAlexander) diff --git a/pubspec.yaml b/pubspec.yaml index ff16f991f5..ef4667caa8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,11 +1,11 @@ name: flutter_launcher_icons description: A package which simplifies the task of updating your Flutter app's launcher icon. -version: 0.9.0 +version: 0.9.1 maintainer: Mark O'Sullivan (@MarkOSullivan94) homepage: https://github.com/fluttercommunity/flutter_launcher_icons dependencies: - args: 2.0.0 + args: ^2.1.1 image: ^3.0.1 path: ^1.8.0 yaml: ^3.1.0 From cd4595cfd02d7eb470e972b691667e9ac9d1c1b0 Mon Sep 17 00:00:00 2001 From: Edmon Marine Clota Date: Wed, 30 Jun 2021 17:44:10 -0400 Subject: [PATCH 2/2] Also update the main message --- bin/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/main.dart b/bin/main.dart index e2cb4c7233..b9ab345dab 100644 --- a/bin/main.dart +++ b/bin/main.dart @@ -2,6 +2,6 @@ import 'package:flutter_launcher_icons/constants.dart'; import 'package:flutter_launcher_icons/main.dart' as flutter_launcher_icons; void main(List arguments) { - print(introMessage('0.9.0')); + print(introMessage('0.9.1')); flutter_launcher_icons.createIconsFromArguments(arguments); }