From f68d577ece9599dc4b1bf382688edf14cf20e9ef Mon Sep 17 00:00:00 2001 From: Xavier Gouchet Date: Mon, 20 Jan 2020 11:34:49 +0100 Subject: [PATCH] :bookmark: Bump to version 1.2.0 --- CHANGELOG.md | 16 ++++++++++++++++ .../com/datadog/gradle/config/AndroidConfig.kt | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ad7714853..e954811702 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 1.2.0 / 2020-01-20 + +### Changes + +* [BUGFIX] Fail silently when trying to initialize the SDK twice. See #86 (Thanks @Vavassor) +* [BUGFIX] Publish the Timber artifact automatically. See #90 (Thanks @Macarse) +* [FEATURE] Create a Crash Handler : App crashes will be automatically logged. +* [FEATURE] Downgrade OkHttp4 to OkHttp3 +* [FEATURE] Make Library compatible with API 19+ +* [FEATURE] Trigger background upload when the app is used offline +* [FEATURE] Use DownloadSpeed and signal strength to add info on connectivity +* [FEATURE] Use Gzip for log upload requests +* [OTHER] Analyse Benchmark reports in the CI +* [OTHER] Fix the flaky test in DataDogTimeProviderTest +* [OTHER] Generate a report on the SDK API changes ([dd-sdk-android/apiSurface](dd-sdk-android/apiSurface)) + # 1.1.1 / 2020-01-07 ### Changes diff --git a/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt b/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt index 87938b4d54..d046026558 100644 --- a/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt +++ b/buildSrc/src/main/kotlin/com/datadog/gradle/config/AndroidConfig.kt @@ -14,5 +14,5 @@ object AndroidConfig { const val MIN_SDK = 19 const val BUILD_TOOLS_VERSION = "29.0.2" - val VERSION = Version(1, 1, 1) + val VERSION = Version(1, 2, 0) }