diff --git a/CHANGELOG.md b/CHANGELOG.md index 5518748d63..cdd3505fa9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.9.1 (25th July 2021) + +- Upgrade args dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra) + ## 0.9.0 (28th Feb 2021) - Null-safety support added (thanks to @SteveAlexander) diff --git a/README.md b/README.md index c9aea80021..1ea97a141b 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 +#### Version 0.9.1 (25th July 2021) + +- Upgrade args dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra) + #### Version 0.9.0 (28th Feb 2021) - Null-safety support added (thanks to @SteveAlexander) @@ -34,7 +38,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a An example is shown below. More complex examples [can be found in the example projects](https://github.com/fluttercommunity/flutter_launcher_icons/tree/master/example). ```yaml dev_dependencies: - flutter_launcher_icons: "^0.9.0" + flutter_launcher_icons: "^0.9.1" flutter_icons: android: "launcher_icon" 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); } diff --git a/pubspec.yaml b/pubspec.yaml index eee301721d..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