diff --git a/CHANGELOG.md b/CHANGELOG.md index 0870de8..870aaba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.6.0](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/compare/v1.5.0...v1.6.0) (2023-06-30) + + +### Features + +* bump iOS Agent to v2.2.0 to introduce new Smart Signals INTER-46 ([882938b](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/commit/882938b83c56276496df5ab456d44be2ca78b1c4)) + ## [1.5.0](https://github.com/fingerprintjs/fingerprintjs-pro-flutter/compare/v1.4.1...v1.5.0) (2023-05-03) diff --git a/README.md b/README.md index 8f87f4e..7a7b18d 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ dependencies: flutter: sdk: flutter ... - fpjs_pro_plugin: ^1.5.0 + fpjs_pro_plugin: ^1.6.0 ``` Run `pub get` to download and install the package. diff --git a/android/build.gradle b/android/build.gradle index a817ed8..5b12f9e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,5 +1,5 @@ group 'com.fingerprintjs.flutter.fpjs_pro.fpjs_pro_plugin' -version '1.5.0' +version '1.6.0' buildscript { ext.kotlin_version = '1.8.10' diff --git a/ios/fpjs_pro_plugin.podspec b/ios/fpjs_pro_plugin.podspec index 39750fc..6d76440 100644 --- a/ios/fpjs_pro_plugin.podspec +++ b/ios/fpjs_pro_plugin.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'fpjs_pro_plugin' - s.version = '1.5.0' + s.version = '1.6.0' s.summary = 'Flutter plugin for FingerprintJS Pro.' s.description = <<-DESC Flutter plugin for FingerprintJS Pro. diff --git a/lib/fpjs_pro_plugin.dart b/lib/fpjs_pro_plugin.dart index 34f6623..c6d215b 100644 --- a/lib/fpjs_pro_plugin.dart +++ b/lib/fpjs_pro_plugin.dart @@ -8,7 +8,7 @@ import 'package:fpjs_pro_plugin/region.dart'; import 'package:fpjs_pro_plugin/result.dart'; // Update it on each release -const pluginVersion = '1.5.0'; +const pluginVersion = '1.6.0'; /// A plugin that accesses native FingerprintJS Pro libraries to get a device identifier class FpjsProPlugin { diff --git a/pubspec.yaml b/pubspec.yaml index 2b2a16c..1b62519 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fpjs_pro_plugin description: Flutter plugin that can be used in an application to call the native FingerprintJS Pro libraries and identify devices. -version: 1.5.0 +version: 1.6.0 homepage: https://fingerprint.com repository: https://github.com/fingerprintjs/fingerprintjs-pro-flutter