Skip to content

Commit

Permalink
Release 3.5.2 (#667)
Browse files Browse the repository at this point in the history
* Update dependencies
* Update changelog
  • Loading branch information
vbuberen committed Jul 29, 2021
1 parent a7d3a90 commit 6225f37
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6225f37

Please sign in to comment.