From 350906710234c6f1f3deeb2f32e39b7bf7257b3c Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Fri, 23 Sep 2022 22:37:07 +0530 Subject: [PATCH 1/7] test(mocks): rebuild test mocks --- test/abs/icon_generator_test.mocks.dart | 104 +++++---- .../macos_icon_generator_test.mocks.dart | 200 ++++++++++++------ .../windows_icon_generator_test.mocks.dart | 183 ++++++++++------ 3 files changed, 318 insertions(+), 169 deletions(-) diff --git a/test/abs/icon_generator_test.mocks.dart b/test/abs/icon_generator_test.mocks.dart index df330e0ce8..8b26393b81 100644 --- a/test/abs/icon_generator_test.mocks.dart +++ b/test/abs/icon_generator_test.mocks.dart @@ -1,4 +1,4 @@ -// Mocks generated by Mockito 5.3.0 from annotations +// Mocks generated by Mockito 5.3.2 from annotations // in flutter_launcher_icons/test/abs/icon_generator_test.dart. // Do not manually edit this file. @@ -21,8 +21,13 @@ import 'package:mockito/mockito.dart' as _i1; class _FakeIconGeneratorContext_0 extends _i1.SmartFake implements _i2.IconGeneratorContext { - _FakeIconGeneratorContext_0(Object parent, Invocation parentInvocation) - : super(parent, parentInvocation); + _FakeIconGeneratorContext_0( + Object parent, + Invocation parentInvocation, + ) : super( + parent, + parentInvocation, + ); } /// A class which mocks [FlutterLauncherIconsConfig]. @@ -35,37 +40,48 @@ class MockFlutterLauncherIconsConfig extends _i1.Mock } @override - int get minSdkAndroid => - (super.noSuchMethod(Invocation.getter(#minSdkAndroid), returnValue: 0) - as int); + int get minSdkAndroid => (super.noSuchMethod( + Invocation.getter(#minSdkAndroid), + returnValue: 0, + ) as int); @override - bool get removeAlphaIOS => (super - .noSuchMethod(Invocation.getter(#removeAlphaIOS), returnValue: false) - as bool); + bool get removeAlphaIOS => (super.noSuchMethod( + Invocation.getter(#removeAlphaIOS), + returnValue: false, + ) as bool); @override - bool get hasAndroidAdaptiveConfig => - (super.noSuchMethod(Invocation.getter(#hasAndroidAdaptiveConfig), - returnValue: false) as bool); + bool get hasAndroidAdaptiveConfig => (super.noSuchMethod( + Invocation.getter(#hasAndroidAdaptiveConfig), + returnValue: false, + ) as bool); @override - bool get hasPlatformConfig => - (super.noSuchMethod(Invocation.getter(#hasPlatformConfig), - returnValue: false) as bool); + bool get hasPlatformConfig => (super.noSuchMethod( + Invocation.getter(#hasPlatformConfig), + returnValue: false, + ) as bool); @override - bool get isCustomAndroidFile => - (super.noSuchMethod(Invocation.getter(#isCustomAndroidFile), - returnValue: false) as bool); + bool get isCustomAndroidFile => (super.noSuchMethod( + Invocation.getter(#isCustomAndroidFile), + returnValue: false, + ) as bool); @override - bool get isNeedingNewAndroidIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewAndroidIcon), - returnValue: false) as bool); + bool get isNeedingNewAndroidIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewAndroidIcon), + returnValue: false, + ) as bool); @override - bool get isNeedingNewIOSIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewIOSIcon), - returnValue: false) as bool); + bool get isNeedingNewIOSIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewIOSIcon), + returnValue: false, + ) as bool); @override - Map toJson() => - (super.noSuchMethod(Invocation.method(#toJson, []), - returnValue: {}) as Map); + Map toJson() => (super.noSuchMethod( + Invocation.method( + #toJson, + [], + ), + returnValue: {}, + ) as Map); } /// A class which mocks [IconGenerator]. @@ -78,19 +94,31 @@ class MockIconGenerator extends _i1.Mock implements _i2.IconGenerator { @override _i2.IconGeneratorContext get context => (super.noSuchMethod( + Invocation.getter(#context), + returnValue: _FakeIconGeneratorContext_0( + this, Invocation.getter(#context), - returnValue: - _FakeIconGeneratorContext_0(this, Invocation.getter(#context))) - as _i2.IconGeneratorContext); + ), + ) as _i2.IconGeneratorContext); @override - String get platformName => - (super.noSuchMethod(Invocation.getter(#platformName), returnValue: '') - as String); + String get platformName => (super.noSuchMethod( + Invocation.getter(#platformName), + returnValue: '', + ) as String); @override - void createIcons() => super.noSuchMethod(Invocation.method(#createIcons, []), - returnValueForMissingStub: null); + void createIcons() => super.noSuchMethod( + Invocation.method( + #createIcons, + [], + ), + returnValueForMissingStub: null, + ); @override - bool validateRequirements() => - (super.noSuchMethod(Invocation.method(#validateRequirements, []), - returnValue: false) as bool); + bool validateRequirements() => (super.noSuchMethod( + Invocation.method( + #validateRequirements, + [], + ), + returnValue: false, + ) as bool); } diff --git a/test/macos/macos_icon_generator_test.mocks.dart b/test/macos/macos_icon_generator_test.mocks.dart index cb3613de09..1039287ade 100644 --- a/test/macos/macos_icon_generator_test.mocks.dart +++ b/test/macos/macos_icon_generator_test.mocks.dart @@ -1,4 +1,4 @@ -// Mocks generated by Mockito 5.3.0 from annotations +// Mocks generated by Mockito 5.3.2 from annotations // in flutter_launcher_icons/test/macos/macos_icon_generator_test.dart. // Do not manually edit this file. @@ -21,13 +21,23 @@ import 'package:mockito/mockito.dart' as _i1; // ignore_for_file: subtype_of_sealed_class class _FakeLogger_0 extends _i1.SmartFake implements _i2.Logger { - _FakeLogger_0(Object parent, Invocation parentInvocation) - : super(parent, parentInvocation); + _FakeLogger_0( + Object parent, + Invocation parentInvocation, + ) : super( + parent, + parentInvocation, + ); } class _FakeProgress_1 extends _i1.SmartFake implements _i2.Progress { - _FakeProgress_1(Object parent, Invocation parentInvocation) - : super(parent, parentInvocation); + _FakeProgress_1( + Object parent, + Invocation parentInvocation, + ) : super( + parent, + parentInvocation, + ); } /// A class which mocks [FlutterLauncherIconsConfig]. @@ -36,38 +46,56 @@ class _FakeProgress_1 extends _i1.SmartFake implements _i2.Progress { class MockFlutterLauncherIconsConfig extends _i1.Mock implements _i3.FlutterLauncherIconsConfig { @override - int get minSdkAndroid => - (super.noSuchMethod(Invocation.getter(#minSdkAndroid), - returnValue: 0, returnValueForMissingStub: 0) as int); - @override - bool get removeAlphaIOS => - (super.noSuchMethod(Invocation.getter(#removeAlphaIOS), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - bool get hasAndroidAdaptiveConfig => - (super.noSuchMethod(Invocation.getter(#hasAndroidAdaptiveConfig), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - bool get hasPlatformConfig => - (super.noSuchMethod(Invocation.getter(#hasPlatformConfig), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - bool get isCustomAndroidFile => - (super.noSuchMethod(Invocation.getter(#isCustomAndroidFile), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - bool get isNeedingNewAndroidIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewAndroidIcon), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - bool get isNeedingNewIOSIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewIOSIcon), - returnValue: false, returnValueForMissingStub: false) as bool); + int get minSdkAndroid => (super.noSuchMethod( + Invocation.getter(#minSdkAndroid), + returnValue: 0, + returnValueForMissingStub: 0, + ) as int); + @override + bool get removeAlphaIOS => (super.noSuchMethod( + Invocation.getter(#removeAlphaIOS), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + bool get hasAndroidAdaptiveConfig => (super.noSuchMethod( + Invocation.getter(#hasAndroidAdaptiveConfig), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + bool get hasPlatformConfig => (super.noSuchMethod( + Invocation.getter(#hasPlatformConfig), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + bool get isCustomAndroidFile => (super.noSuchMethod( + Invocation.getter(#isCustomAndroidFile), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + bool get isNeedingNewAndroidIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewAndroidIcon), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + bool get isNeedingNewIOSIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewIOSIcon), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); @override Map toJson() => (super.noSuchMethod( - Invocation.method(#toJson, []), - returnValue: {}, - returnValueForMissingStub: {}) as Map); + Invocation.method( + #toJson, + [], + ), + returnValue: {}, + returnValueForMissingStub: {}, + ) as Map); } /// A class which mocks [MacOSConfig]. @@ -75,13 +103,20 @@ class MockFlutterLauncherIconsConfig extends _i1.Mock /// See the documentation for Mockito's code generation for more information. class MockMacOSConfig extends _i1.Mock implements _i3.MacOSConfig { @override - bool get generate => (super.noSuchMethod(Invocation.getter(#generate), - returnValue: false, returnValueForMissingStub: false) as bool); + bool get generate => (super.noSuchMethod( + Invocation.getter(#generate), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); @override Map toJson() => (super.noSuchMethod( - Invocation.method(#toJson, []), - returnValue: {}, - returnValueForMissingStub: {}) as Map); + Invocation.method( + #toJson, + [], + ), + returnValue: {}, + returnValueForMissingStub: {}, + ) as Map); } /// A class which mocks [FLILogger]. @@ -89,31 +124,66 @@ class MockMacOSConfig extends _i1.Mock implements _i3.MacOSConfig { /// See the documentation for Mockito's code generation for more information. class MockFLILogger extends _i1.Mock implements _i4.FLILogger { @override - bool get isVerbose => (super.noSuchMethod(Invocation.getter(#isVerbose), - returnValue: false, returnValueForMissingStub: false) as bool); - @override - _i2.Logger get rawLogger => (super.noSuchMethod(Invocation.getter(#rawLogger), - returnValue: _FakeLogger_0(this, Invocation.getter(#rawLogger)), - returnValueForMissingStub: - _FakeLogger_0(this, Invocation.getter(#rawLogger))) as _i2.Logger); - @override - void error(Object? message) => - super.noSuchMethod(Invocation.method(#error, [message]), - returnValueForMissingStub: null); - @override - void verbose(Object? message) => - super.noSuchMethod(Invocation.method(#verbose, [message]), - returnValueForMissingStub: null); - @override - void info(Object? message) => - super.noSuchMethod(Invocation.method(#info, [message]), - returnValueForMissingStub: null); + bool get isVerbose => (super.noSuchMethod( + Invocation.getter(#isVerbose), + returnValue: false, + returnValueForMissingStub: false, + ) as bool); + @override + _i2.Logger get rawLogger => (super.noSuchMethod( + Invocation.getter(#rawLogger), + returnValue: _FakeLogger_0( + this, + Invocation.getter(#rawLogger), + ), + returnValueForMissingStub: _FakeLogger_0( + this, + Invocation.getter(#rawLogger), + ), + ) as _i2.Logger); + @override + void error(Object? message) => super.noSuchMethod( + Invocation.method( + #error, + [message], + ), + returnValueForMissingStub: null, + ); + @override + void verbose(Object? message) => super.noSuchMethod( + Invocation.method( + #verbose, + [message], + ), + returnValueForMissingStub: null, + ); + @override + void info(Object? message) => super.noSuchMethod( + Invocation.method( + #info, + [message], + ), + returnValueForMissingStub: null, + ); @override _i2.Progress progress(String? message) => (super.noSuchMethod( - Invocation.method(#progress, [message]), - returnValue: - _FakeProgress_1(this, Invocation.method(#progress, [message])), - returnValueForMissingStub: - _FakeProgress_1(this, Invocation.method(#progress, [message]))) - as _i2.Progress); + Invocation.method( + #progress, + [message], + ), + returnValue: _FakeProgress_1( + this, + Invocation.method( + #progress, + [message], + ), + ), + returnValueForMissingStub: _FakeProgress_1( + this, + Invocation.method( + #progress, + [message], + ), + ), + ) as _i2.Progress); } diff --git a/test/windows/windows_icon_generator_test.mocks.dart b/test/windows/windows_icon_generator_test.mocks.dart index 07756ea200..4ca4948570 100644 --- a/test/windows/windows_icon_generator_test.mocks.dart +++ b/test/windows/windows_icon_generator_test.mocks.dart @@ -1,4 +1,4 @@ -// Mocks generated by Mockito 5.3.0 from annotations +// Mocks generated by Mockito 5.3.2 from annotations // in flutter_launcher_icons/test/windows/windows_icon_generator_test.dart. // Do not manually edit this file. @@ -21,13 +21,23 @@ import 'package:mockito/mockito.dart' as _i1; // ignore_for_file: subtype_of_sealed_class class _FakeLogger_0 extends _i1.SmartFake implements _i2.Logger { - _FakeLogger_0(Object parent, Invocation parentInvocation) - : super(parent, parentInvocation); + _FakeLogger_0( + Object parent, + Invocation parentInvocation, + ) : super( + parent, + parentInvocation, + ); } class _FakeProgress_1 extends _i1.SmartFake implements _i2.Progress { - _FakeProgress_1(Object parent, Invocation parentInvocation) - : super(parent, parentInvocation); + _FakeProgress_1( + Object parent, + Invocation parentInvocation, + ) : super( + parent, + parentInvocation, + ); } /// A class which mocks [FlutterLauncherIconsConfig]. @@ -40,37 +50,48 @@ class MockFlutterLauncherIconsConfig extends _i1.Mock } @override - int get minSdkAndroid => - (super.noSuchMethod(Invocation.getter(#minSdkAndroid), returnValue: 0) - as int); - @override - bool get removeAlphaIOS => (super - .noSuchMethod(Invocation.getter(#removeAlphaIOS), returnValue: false) - as bool); - @override - bool get hasAndroidAdaptiveConfig => - (super.noSuchMethod(Invocation.getter(#hasAndroidAdaptiveConfig), - returnValue: false) as bool); - @override - bool get hasPlatformConfig => - (super.noSuchMethod(Invocation.getter(#hasPlatformConfig), - returnValue: false) as bool); - @override - bool get isCustomAndroidFile => - (super.noSuchMethod(Invocation.getter(#isCustomAndroidFile), - returnValue: false) as bool); - @override - bool get isNeedingNewAndroidIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewAndroidIcon), - returnValue: false) as bool); - @override - bool get isNeedingNewIOSIcon => - (super.noSuchMethod(Invocation.getter(#isNeedingNewIOSIcon), - returnValue: false) as bool); - @override - Map toJson() => - (super.noSuchMethod(Invocation.method(#toJson, []), - returnValue: {}) as Map); + int get minSdkAndroid => (super.noSuchMethod( + Invocation.getter(#minSdkAndroid), + returnValue: 0, + ) as int); + @override + bool get removeAlphaIOS => (super.noSuchMethod( + Invocation.getter(#removeAlphaIOS), + returnValue: false, + ) as bool); + @override + bool get hasAndroidAdaptiveConfig => (super.noSuchMethod( + Invocation.getter(#hasAndroidAdaptiveConfig), + returnValue: false, + ) as bool); + @override + bool get hasPlatformConfig => (super.noSuchMethod( + Invocation.getter(#hasPlatformConfig), + returnValue: false, + ) as bool); + @override + bool get isCustomAndroidFile => (super.noSuchMethod( + Invocation.getter(#isCustomAndroidFile), + returnValue: false, + ) as bool); + @override + bool get isNeedingNewAndroidIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewAndroidIcon), + returnValue: false, + ) as bool); + @override + bool get isNeedingNewIOSIcon => (super.noSuchMethod( + Invocation.getter(#isNeedingNewIOSIcon), + returnValue: false, + ) as bool); + @override + Map toJson() => (super.noSuchMethod( + Invocation.method( + #toJson, + [], + ), + returnValue: {}, + ) as Map); } /// A class which mocks [WindowsConfig]. @@ -82,13 +103,18 @@ class MockWindowsConfig extends _i1.Mock implements _i3.WindowsConfig { } @override - bool get generate => - (super.noSuchMethod(Invocation.getter(#generate), returnValue: false) - as bool); - @override - Map toJson() => - (super.noSuchMethod(Invocation.method(#toJson, []), - returnValue: {}) as Map); + bool get generate => (super.noSuchMethod( + Invocation.getter(#generate), + returnValue: false, + ) as bool); + @override + Map toJson() => (super.noSuchMethod( + Invocation.method( + #toJson, + [], + ), + returnValue: {}, + ) as Map); } /// A class which mocks [FLILogger]. @@ -100,29 +126,54 @@ class MockFLILogger extends _i1.Mock implements _i4.FLILogger { } @override - bool get isVerbose => - (super.noSuchMethod(Invocation.getter(#isVerbose), returnValue: false) - as bool); - @override - _i2.Logger get rawLogger => (super.noSuchMethod(Invocation.getter(#rawLogger), - returnValue: _FakeLogger_0(this, Invocation.getter(#rawLogger))) - as _i2.Logger); - @override - void error(Object? message) => - super.noSuchMethod(Invocation.method(#error, [message]), - returnValueForMissingStub: null); - @override - void verbose(Object? message) => - super.noSuchMethod(Invocation.method(#verbose, [message]), - returnValueForMissingStub: null); - @override - void info(Object? message) => - super.noSuchMethod(Invocation.method(#info, [message]), - returnValueForMissingStub: null); + bool get isVerbose => (super.noSuchMethod( + Invocation.getter(#isVerbose), + returnValue: false, + ) as bool); + @override + _i2.Logger get rawLogger => (super.noSuchMethod( + Invocation.getter(#rawLogger), + returnValue: _FakeLogger_0( + this, + Invocation.getter(#rawLogger), + ), + ) as _i2.Logger); + @override + void error(Object? message) => super.noSuchMethod( + Invocation.method( + #error, + [message], + ), + returnValueForMissingStub: null, + ); + @override + void verbose(Object? message) => super.noSuchMethod( + Invocation.method( + #verbose, + [message], + ), + returnValueForMissingStub: null, + ); + @override + void info(Object? message) => super.noSuchMethod( + Invocation.method( + #info, + [message], + ), + returnValueForMissingStub: null, + ); @override _i2.Progress progress(String? message) => (super.noSuchMethod( - Invocation.method(#progress, [message]), - returnValue: - _FakeProgress_1(this, Invocation.method(#progress, [message]))) - as _i2.Progress); + Invocation.method( + #progress, + [message], + ), + returnValue: _FakeProgress_1( + this, + Invocation.method( + #progress, + [message], + ), + ), + ) as _i2.Progress); } From 780ab2d55905858c4fbbe4b913d6473f5e0e13c0 Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Fri, 23 Sep 2022 22:41:13 +0530 Subject: [PATCH 2/7] chore(release): updated version to `v0.10.1` --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74adb7b04e..e7bd02f523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.10.1 + +- Support for Macos Icons [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) +- Cli-improvement [#400](https://github.com/fluttercommunity/flutter_launcher_icons/pull/400) +- Add `repository` and `issue_tracker` [#411](https://github.com/fluttercommunity/flutter_launcher_icons/pull/411) (thanks to [patelpathik](https://github.com/patelpathik)) +- Fix indent in web/manifest.json [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) +- Fix the icons 50 and 57 in `contents.json` [#412](https://github.com/fluttercommunity/flutter_launcher_icons/pull/412) (thanks to [adnanjpg](https://github.com/adnanjpg)) +- Fix typos + ## 0.10.0 (2nd August 2022) - Support for Web Icons [#374](https://github.com/fluttercommunity/flutter_launcher_icons/pull/374) diff --git a/README.md b/README.md index ca0326b808..3bb6089939 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ An example is shown below. More complex examples [can be found in the example pr ```yaml dev_dependencies: - flutter_launcher_icons: "^0.10.0" + flutter_launcher_icons: "^0.10.1" flutter_icons: android: "launcher_icon" diff --git a/lib/src/version.dart b/lib/src/version.dart index 358c7b96ea..cc4ab38662 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.10.0'; +const packageVersion = '0.10.1'; diff --git a/pubspec.yaml b/pubspec.yaml index 10ebb599c4..d12be88e57 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.10.0 +version: 0.10.1 maintainer: Mark O'Sullivan (@MarkOSullivan94) homepage: https://github.com/fluttercommunity/flutter_launcher_icons repository: https://github.com/fluttercommunity/flutter_launcher_icons/ From c09ad99b2234a36627551e1686437ee75c5f262f Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Fri, 23 Sep 2022 22:46:27 +0530 Subject: [PATCH 3/7] chore: updated change log --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7bd02f523..8c9388fe2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,10 @@ - Support for Macos Icons [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) - Cli-improvement [#400](https://github.com/fluttercommunity/flutter_launcher_icons/pull/400) -- Add `repository` and `issue_tracker` [#411](https://github.com/fluttercommunity/flutter_launcher_icons/pull/411) (thanks to [patelpathik](https://github.com/patelpathik)) +- Add `repository` and `issue_tracker` [#411](https://github.com/fluttercommunity/flutter_launcher_icons/pull/411) (thanks to [@patelpathik](https://github.com/patelpathik)) - Fix indent in web/manifest.json [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) -- Fix the icons 50 and 57 in `contents.json` [#412](https://github.com/fluttercommunity/flutter_launcher_icons/pull/412) (thanks to [adnanjpg](https://github.com/adnanjpg)) -- Fix typos +- Fix the icons 50 and 57 in `contents.json` [#412](https://github.com/fluttercommunity/flutter_launcher_icons/pull/412) (thanks to [@adnanjpg](https://github.com/adnanjpg)) +- Fix typos [#405](https://github.com/fluttercommunity/flutter_launcher_icons/pull/405) (thanks to [@edwardmp](https://github.com/edwardmp)) ## 0.10.0 (2nd August 2022) From 50a0d875c189fe3e96dddc1daff0068288f09d05 Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Sat, 24 Sep 2022 13:07:14 +0530 Subject: [PATCH 4/7] chore: add change from #324 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c9388fe2d..462d4e558c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Fix indent in web/manifest.json [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) - Fix the icons 50 and 57 in `contents.json` [#412](https://github.com/fluttercommunity/flutter_launcher_icons/pull/412) (thanks to [@adnanjpg](https://github.com/adnanjpg)) - Fix typos [#405](https://github.com/fluttercommunity/flutter_launcher_icons/pull/405) (thanks to [@edwardmp](https://github.com/edwardmp)) +- Added newline to EOF [#325](https://github.com/fluttercommunity/flutter_launcher_icons/pull/325) (thanks to [@sandersaelmans](https://github.com/sandersaelmans)) ## 0.10.0 (2nd August 2022) From e0c4337332f12deece0be75c6c3201be2d982c61 Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Tue, 27 Sep 2022 11:14:04 +0530 Subject: [PATCH 5/7] chore(release): update release version to `v0.11.0` --- CHANGELOG.md | 2 +- lib/src/version.dart | 2 +- pubspec.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 462d4e558c..528f3f8248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## 0.10.1 +## 0.11.0 (27th September 2022) - Support for Macos Icons [#407](https://github.com/fluttercommunity/flutter_launcher_icons/pull/407) - Cli-improvement [#400](https://github.com/fluttercommunity/flutter_launcher_icons/pull/400) diff --git a/lib/src/version.dart b/lib/src/version.dart index cc4ab38662..884cfa9548 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.10.1'; +const packageVersion = '0.11.0'; diff --git a/pubspec.yaml b/pubspec.yaml index d12be88e57..d13bd8cb80 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.10.1 +version: 0.11.0 maintainer: Mark O'Sullivan (@MarkOSullivan94) homepage: https://github.com/fluttercommunity/flutter_launcher_icons repository: https://github.com/fluttercommunity/flutter_launcher_icons/ @@ -16,7 +16,7 @@ dependencies: yaml: ^3.1.0 environment: - sdk: '>=2.12.0 <3.0.0' + sdk: ">=2.12.0 <3.0.0" dev_dependencies: # Needed by build_version From ea4fa8bdf6e8529e5006494f637c1e3c506f445c Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Sat, 1 Oct 2022 21:48:50 +0530 Subject: [PATCH 6/7] Update README.md Co-authored-by: Mark O'Sullivan --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bb6089939..4e152139a7 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ An example is shown below. More complex examples [can be found in the example pr ```yaml dev_dependencies: - flutter_launcher_icons: "^0.10.1" + flutter_launcher_icons: "^0.11.0" flutter_icons: android: "launcher_icon" From 11a8174c6b8e08a75ef0dec72124c30279813cdc Mon Sep 17 00:00:00 2001 From: Ratakondala Arun Date: Mon, 3 Oct 2022 10:28:40 +0530 Subject: [PATCH 7/7] style(format): format sdk version --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index d13bd8cb80..7cc0884573 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ dependencies: yaml: ^3.1.0 environment: - sdk: ">=2.12.0 <3.0.0" + sdk: '>=2.12.0 <3.0.0' dev_dependencies: # Needed by build_version