From 0e1a4eaff3bca79409b198b3fe0e3e01e22e622a Mon Sep 17 00:00:00 2001 From: Brian Higgins Date: Mon, 19 Apr 2021 13:57:11 -0700 Subject: [PATCH] update version to 1.0.0 --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- gradle.properties | 4 ++-- sift/build.gradle | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8b3f64..81c0319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [1.0.0] - 2021-04-20 + +### Added +- Executor used for trigger collect method of DeviceProperties and AppState terminated on sift.cancel(). +- Images used in DESIGNDOC.md are added to the repo to avoid URL issues. +- Created Changelog +- Prevent SDK from sending empty configuration properties + ## [0.11.1] - 2020-11-20 ### Added diff --git a/README.md b/README.md index 75531c4..0be5883 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add Sift to your application’s build.gradle file: ```gradle dependencies { ... - compile 'com.siftscience:sift-android:0.11.1' + compile 'com.siftscience:sift-android:1.0.0' ... } ``` diff --git a/gradle.properties b/gradle.properties index c1665db..fa610b8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,8 +17,8 @@ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects # org.gradle.parallel=true -VERSION_NAME=0.11.1 -VERSION_CODE=20 +VERSION_NAME=1.0.0 +VERSION_CODE=21 GROUP=com.siftscience diff --git a/sift/build.gradle b/sift/build.gradle index a7131fa..42799d1 100644 --- a/sift/build.gradle +++ b/sift/build.gradle @@ -18,8 +18,8 @@ android { defaultConfig { minSdkVersion 16 // Jelly Bean 4.1.x (basically Java 6) targetSdkVersion 30 - versionCode 20 - versionName '0.11.1' + versionCode 21 + versionName '1.0.0' consumerProguardFiles 'proguard-rules.pro' }