diff --git a/CHANGELOG.md b/CHANGELOG.md index 05b09c4..53fa3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # flutter_user_agent version history +## 1.2.0 + +* iOS deprecation API change. + + > ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of apps that use UIWebView APIs . See https://developer.apple.com/documentation/uikit/uiwebview for more information. + + - Remove references to `UIWebView` as it's deprecated and currently stops app submissions to the App Store - [#3](https://github.com/j0j00/flutter_user_agent/issues/3) (thanks [@rodruiz](https://github.com/rodruiz)!) + + - The plugin will only work on iOS 8 and up. + ## 1.1.0 * iOS API change for compatibility purposes. diff --git a/android/build.gradle b/android/build.gradle index 5e083e2..988d1dc 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'io.jojodev.flutter.flutteruseragent' -version '1.1.0-SNAPSHOT' +version '1.2.0-SNAPSHOT' buildscript { repositories { diff --git a/ios/flutter_user_agent.podspec b/ios/flutter_user_agent.podspec index db20c9b..915525a 100644 --- a/ios/flutter_user_agent.podspec +++ b/ios/flutter_user_agent.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'flutter_user_agent' - s.version = '1.1.0' + s.version = '1.2.0' s.summary = 'Retrieve user-agent properties.' s.description = <<-DESC Retrieve user-agent properties diff --git a/pubspec.yaml b/pubspec.yaml index bd57106..d9ef170 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: flutter_user_agent description: Retrieve device and webview user agent strings for Android and iOS devices. It also provides you with simple building blocks for generating your own user agent string. -version: 1.1.0 +version: 1.2.0 author: j0j00 homepage: https://github.com/j0j00/flutter_user_agent