diff --git a/CHANGELOG.md b/CHANGELOG.md index 3648b11953..b4997b59ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.8.0 / 2021-02-?? +# 1.8.0 / 2021-02-25 * [BUGFIX] Global: handle correctly incorrect domain names in Interceptors' known hosts * [BUGFIX] RUM: RUM Context was bundled in spans even when RUM was not enabled @@ -12,7 +12,6 @@ * [IMPROVEMENT] APM: Stop duplicating APM errors as RUM errors * [IMPROVEMENT] Logs Align the 'error.kind' attribute value with RUM Error 'error.type' * [IMPROVEMENT] RUM: Get a more accurate Application loading time -* [IMPROVEMENT] RUM: Duplicate RUM Resource with failures as RUM Error * [IMPROVEMENT] RUM: Add a variant tag on RUM events # 1.7.0 / 2021-01-04 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 9c984f41be..3cf890164c 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 = "30.0.2" - val VERSION = Version(1, 8, 0, Version.Type.Beta(1)) + val VERSION = Version(1, 8, 0) }