Skip to content

Commit 5a060db

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

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

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

3+
## 0.9.1 (30th Jun 2021)
4+
5+
- Upgrade args dependency to ^2.1.1
6+
37
## 0.9.0 (28th Feb 2021)
48

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

README.md

+4
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+
### 0.9.1 (30th Jun 2021)
13+
14+
- Upgrade args dependency to ^2.1.1
15+
1216
#### Version 0.9.0 (28th Feb 2021)
1317

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

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)