From 6225f375640e751ec5a765f08381f9997f13d27c Mon Sep 17 00:00:00 2001 From: Volodymyr Buberenko Date: Thu, 29 Jul 2021 11:23:34 +0300 Subject: [PATCH] Release 3.5.2 (#667) * Update dependencies * Update changelog --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- build.gradle | 8 ++++---- gradle.properties | 6 +++--- 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7904fad5e..6dcd146b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ This file follows [Keepachangelog](https://keepachangelog.com/) format. Please add your entries according to this format. +## Version 3.5.2 *(2021-07-28)* + +This release is a re-deployment of 3.5.1, since 3.5.1 aar didn't upload properly on Maven Central. + ## Version 3.5.1 *(2021-07-19)* ### Fixed diff --git a/README.md b/README.md index b16393990..1ca6cf742 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,8 @@ Please note that you should add both the `library` and the the `library-no-op` v ```groovy dependencies { - debugImplementation "com.github.chuckerteam.chucker:library:3.4.0" - releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.4.0" + debugImplementation "com.github.chuckerteam.chucker:library:3.5.2" + releaseImplementation "com.github.chuckerteam.chucker:library-no-op:3.5.2" } ``` diff --git a/build.gradle b/build.gradle index 41a7e1a6b..3bfdb564d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,16 @@ buildscript { ext { - kotlinVersion = '1.5.20' + kotlinVersion = '1.5.21' androidGradleVersion = '4.2.2' coroutineVersion = '1.5.1' // Google libraries - activityVersion = '1.2.3' - appCompatVersion = '1.3.0' + activityVersion = '1.2.4' + appCompatVersion = '1.3.1' constraintLayoutVersion = '2.0.4' materialComponentsVersion = '1.4.0' roomVersion = '2.3.0' - fragmentVersion = '1.3.5' + fragmentVersion = '1.3.6' lifecycleVersion = '2.3.1' androidXCoreVersion = '2.1.0' paletteKtxVersion = '1.0.0' diff --git a/gradle.properties b/gradle.properties index 703f019f9..d4f060052 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,9 +18,9 @@ org.gradle.parallel=true android.useAndroidX=true -VERSION_NAME=3.5.1 -# 3*100*100 + 5*100 + 1 => 30501 -VERSION_CODE=30501 +VERSION_NAME=3.5.2 +# 3*100*100 + 5*100 + 2 => 30502 +VERSION_CODE=30502 GROUP=com.github.chuckerteam.chucker POM_REPO_NAME=Chucker