diff --git a/CHANGELOG.md b/CHANGELOG.md index b177e48217..abd7e40126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.9.2 (22nd August 2021) + +- Fixed issue where success message printed even when exception occured (thanks to @happy-san) + + ## 0.9.1 (25th July 2021) - Upgrade args dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra) diff --git a/README.md b/README.md index 0d43c92625..53eaa5e6b6 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.2 (22nd August 2021) + +- Fixed issue where success message printed even when exception occured (thanks to @happy-san) + #### Version 0.9.1 (25th July 2021) - Upgraded `args` dependency to ^2.1.1 (thanks to @PiN73 and @comlaterra) @@ -39,7 +43,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.1" + flutter_launcher_icons: "^0.9.2" flutter_icons: android: "launcher_icon" diff --git a/pubspec.yaml b/pubspec.yaml index 3aa854879d..32e479a7e3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_launcher_icons description: A package which simplifies the task of updating your Flutter app's launcher icon. -version: 0.9.1 +version: 0.9.2 maintainer: Mark O'Sullivan (@MarkOSullivan94) homepage: https://github.com/fluttercommunity/flutter_launcher_icons @@ -14,4 +14,4 @@ environment: sdk: '>=2.12.0-0 <3.0.0' dev_dependencies: - test: ^1.17.10 + test: ^1.17.11