Skip to content

Commit c0e514b

Browse files
authored
Merge pull request #115 from fluttercandies/bump-version
feat(deps): bump version for deps
2 parents 50f2571 + 86d947e commit c0e514b

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.env
22
.idea/
3+
.vscode/

image_editor/example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.6.10'
2+
ext.kotlin_version = '1.8.0'
33
repositories {
44
google()
55
mavenCentral()
@@ -26,6 +26,6 @@ subprojects {
2626
project.evaluationDependsOn(':app')
2727
}
2828

29-
task clean(type: Delete) {
29+
tasks.register("clean", Delete) {
3030
delete rootProject.buildDir
3131
}

image_editor/example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,12 @@
55
import FlutterMacOS
66
import Foundation
77

8+
import file_selector_macos
89
import image_editor_common
9-
import path_provider_macos
10+
import path_provider_foundation
1011

1112
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
13+
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
1214
ImageEditorPlugin.register(with: registry.registrar(forPlugin: "ImageEditorPlugin"))
1315
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
1416
}

image_editor/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ dependencies:
1414
image_editor:
1515
path: ..
1616

17-
extended_image: ^6.1.0
18-
image_picker: ^0.8.5+3
17+
extended_image: ^8.0.2
18+
image_picker: ^1.0.1
1919
oktoast: ^3.1.5
20-
path_provider: ^2.0.0
20+
path_provider: ^2.0.15
2121
image_size_getter: ^2.1.2
2222

2323
flutter:

image_editor_common/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group 'com.fluttercandies.image_editor'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.6.10'
5+
ext.kotlin_version = '1.8.0'
66
repositories {
77
google()
88
mavenCentral()

0 commit comments

Comments
 (0)