Skip to content

Commit caffe34

Browse files
Merge pull request #263 from comlaterra/master
Upgrade args dependency
2 parents 9db8bb2 + f7d9303 commit caffe34

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.9.1 (25th July 2021)
4+
5+
- Upgrade args dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra)
6+
37
## 0.9.0 (28th Feb 2021)
48

59
- Null-safety support added (thanks to @SteveAlexander)

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ A command-line tool which simplifies the task of updating your Flutter app's lau
99

1010
## :sparkles: What's New
1111

12+
#### Version 0.9.1 (25th July 2021)
13+
14+
- Upgrade args dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra)
15+
1216
#### Version 0.9.0 (28th Feb 2021)
1317

1418
- Null-safety support added (thanks to @SteveAlexander)
@@ -34,7 +38,7 @@ Add your Flutter Launcher Icons configuration to your `pubspec.yaml` or create a
3438
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).
3539
```yaml
3640
dev_dependencies:
37-
flutter_launcher_icons: "^0.9.0"
41+
flutter_launcher_icons: "^0.9.1"
3842

3943
flutter_icons:
4044
android: "launcher_icon"

bin/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ import 'package:flutter_launcher_icons/constants.dart';
22
import 'package:flutter_launcher_icons/main.dart' as flutter_launcher_icons;
33

44
void main(List<String> arguments) {
5-
print(introMessage('0.9.0'));
5+
print(introMessage('0.9.1'));
66
flutter_launcher_icons.createIconsFromArguments(arguments);
77
}

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: flutter_launcher_icons
22
description: A package which simplifies the task of updating your Flutter app's launcher icon.
3-
version: 0.9.0
3+
version: 0.9.1
44
maintainer: Mark O'Sullivan (@MarkOSullivan94)
55
homepage: https://github.com/fluttercommunity/flutter_launcher_icons
66

77
dependencies:
8-
args: ^2.0.0
8+
args: ^2.1.1
99
image: ^3.0.1
1010
path: ^1.8.0
1111
yaml: ^3.1.0

0 commit comments

Comments
 (0)