Skip to content

Commit

Permalink
Merge pull request #263 from comlaterra/master
Browse files Browse the repository at this point in the history
Upgrade args dependency
  • Loading branch information
MarkOSullivan94 committed Jul 25, 2021
2 parents 9db8bb2 + f7d9303 commit caffe34
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion bin/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<String> arguments) {
print(introMessage('0.9.0'));
print(introMessage('0.9.1'));
flutter_launcher_icons.createIconsFromArguments(arguments);
}
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit caffe34

Please sign in to comment.