From 9710e643f020c8b78ef3061992ffc04aafc087a3 Mon Sep 17 00:00:00 2001 From: Jake Wharton Date: Mon, 18 May 2020 14:43:57 -0400 Subject: [PATCH] Prepare version 2.8.2 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ffde2a9..dd13738f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Change Log ========== +Version 2.8.2 *(2020-05-18)* +---------------------------- + + * Fix: Detect running on the Android platform by using system property rather than the presence of classes. + This ensures that even when you're running on the JVM with Android classes present on the classpath you + get JVM semantics. + * Fix: Update to OkHttp 3.14.9 which contains an associated Android platform detection fix. + + Version 2.8.1 *(2020-03-25)* ---------------------------- diff --git a/README.md b/README.md index aaeecb40..32ae97e3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ For more information please see [the website][1]. Download -------- -Download [the latest JAR][2] or grab from Maven central at the coordinates `com.squareup.retrofit2:retrofit:2.8.1`. +Download [the latest JAR][2] or grab from Maven central at the coordinates `com.squareup.retrofit2:retrofit:2.8.2`. Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. diff --git a/gradle.properties b/gradle.properties index 2efc551a..4d710f51 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.squareup.retrofit2 -VERSION_NAME=2.9.0-SNAPSHOT +VERSION_NAME=2.8.2 POM_URL=https://github.com/square/retrofit POM_SCM_URL=https://github.com/square/retrofit/ -- GitLab