diff --git a/CHANGELOG.md b/CHANGELOG.md index f42b66d..ae9088b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 7.2.0 +- customUrl: you can set your own backend url + # 7.1.0 - feat(release): add release flutter plugin workflow (#4) - feat: init ios herow-sdk (#3) diff --git a/README.md b/README.md index c8885ad..1f1f630 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ dependencies: herow_plugin_flutter: git: url: https://github.com/herowio/herow-plugin-flutter.git - ref: 7.1.0 + ref: 7.2.0 ``` - Update flutter with `flutter pub get` diff --git a/android/build.gradle b/android/build.gradle index 910ca22..99d967a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'io.herow.herow_plugin_flutter' -version '7.1.0' +version '7.2.0' buildscript { ext.kotlin_version = '1.5.10' @@ -25,7 +25,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdkVersion 30 + compileSdkVersion 31 sourceSets { main.java.srcDirs += 'src/main/kotlin' @@ -37,5 +37,5 @@ android { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" - implementation 'io.herow.sdk:detection:7.1.0' + implementation 'io.herow.sdk:detection:7.2.0' } diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 732eec1..e4f348d 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdkVersion 30 + compileSdkVersion 31 sourceSets { main.java.srcDirs += 'src/main/kotlin' diff --git a/ios/herow_plugin_flutter.podspec b/ios/herow_plugin_flutter.podspec index c6ea751..0844d9d 100644 --- a/ios/herow_plugin_flutter.podspec +++ b/ios/herow_plugin_flutter.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'herow_plugin_flutter' - s.version = '7.1.0' + s.version = '7.2.0' s.summary = 'Herow plugin flutter for herow-sdk' s.description = <<-DESC Herow plugin flutter for herow-sdk @@ -13,7 +13,7 @@ Herow plugin flutter for herow-sdk s.license = 'MIT' s.author = { 'Herow' => 'contact@herow.io' } s.source = { - :http => "https://github.com/herowio/herow-sdk-ios/releases/download/v7.1.0/herow_sdk_ios.framework.zip", + :http => "https://github.com/herowio/herow-sdk-ios/releases/download/v7.2.0/herow_sdk_ios.framework.zip", :type => "zip" } s.source_files = 'Classes/**/*' diff --git a/pubspec.yaml b/pubspec.yaml index 0f917f2..f9814d5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,9 +1,9 @@ name: herow_plugin_flutter description: Herow plugin flutter for herow-sdk -version: 7.1.0 +version: 7.2.0 repository: https://github.com/herowio/herow-plugin-flutter/tree/main issue_tracker: https://github.com/herowio/herow-plugin-flutter/issues?q=is%3Aopen+is%3Aissue -homepage: https://docs.herow.io/sdk/6.3/android/5-minutes-quickstart.html +homepage: https://github.com/herowio/herow-plugin-flutter environment: sdk: ">=2.12.0 <3.0.0" flutter: ">=1.20.0"