From 372378d90a05b2571fab1a55edfda6a51db2259f Mon Sep 17 00:00:00 2001 From: Volodymyr Buberenko Date: Thu, 5 Nov 2020 17:56:31 +0200 Subject: [PATCH] Release 3.4.0 (#492) * Version update * Update Changelogs --- CHANGELOG.md | 11 ++++++++--- gradle.properties | 6 +++--- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d01955b65..7386a20f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ This file follows [Keepachangelog](https://keepachangelog.com/) format. Please add your entries according to this format. -## Unreleased +## Version 3.4.0 *(2020-11-05)* ### Added @@ -12,11 +12,15 @@ Please add your entries according to this format. ### Changed * Bumped `targetSDK` and `compileSDK` to 30 (Android 11). -* Removed `kotlin-android-extensions` plugin. + +### Removed + +* `kotlin-android-extensions` plugin for better compatibility with Kotlin 1.4.20. ### Fixed * Fixed memory leak in MainActivity [#465]. +* Fixed `GzipSource is not closed` error reported by StrictMode [#472]. * Fixed build failure for projects with new `kotlin-parcelize` plugin [#480]. ### Deprecated @@ -460,4 +464,5 @@ Initial release. [#410]: https://github.com/ChuckerTeam/chucker/issues/410 [#422]: https://github.com/ChuckerTeam/chucker/issues/422 [#465]: https://github.com/ChuckerTeam/chucker/issues/465 -[#480]: https://github.com/ChuckerTeam/chucker/issues/480 +[#472]: https://github.com/ChuckerTeam/chucker/issues/472 +[#480]: https://github.com/ChuckerTeam/chucker/issues/480 \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 8cbafa798..4b2eea5a9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,9 +18,9 @@ org.gradle.parallel=true android.useAndroidX=true -VERSION_NAME=3.3.1-SNAPSHOT -# 3*100*100 + 3*100 + 1 => 30301 -VERSION_CODE=30301 +VERSION_NAME=3.4.0 +# 3*100*100 + 4*100 + 0 => 30400 +VERSION_CODE=30400 GROUP=com.github.chuckerteam.chucker POM_REPO_NAME=Chucker