Skip to content

Commit

Permalink
Update Kotlin to 1.5.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bojan committed May 24, 2021
1 parent 305937e commit 12ac06a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

## Version 5.3.5

_2021-05-24_

* Update Kotlin to 1.5.10.

## Version 5.3.4

_2021-05-20_
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ Then add the following dependencies in your app `build.gradle` or `build.gradle.

**Groovy**
```groovy
debugImplementation "com.infinum.dbinspector:dbinspector:5.3.4"
releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.4"
debugImplementation "com.infinum.dbinspector:dbinspector:5.3.5"
releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.5"
```
**KotlinDSL**
```kotlin
debugImplementation("com.infinum.dbinspector:dbinspector:5.3.4")
releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.4")
debugImplementation("com.infinum.dbinspector:dbinspector:5.3.5")
releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.5")
```

### Usage
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty" for whole file
build.debug=true
build.debug=false
4 changes: 2 additions & 2 deletions config.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {
]
releaseConfig = [
"group" : "com.infinum.dbinspector",
"version" : "5.3.4",
"versionCode": 5 * 100 * 100 + 3 * 100 + 4
"version" : "5.3.5",
"versionCode": 5 * 100 * 100 + 3 * 100 + 5
]
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[versions]
dbinspector = "5.3.4"
gradle = "4.2.1"
kotlin = "1.5.0"
kotlin = "1.5.10"
coroutines = "1.5.0"
core = "1.5.0"
appcompat = "1.3.0"
Expand Down

0 comments on commit 12ac06a

Please sign in to comment.