Skip to content

Commit

Permalink
Prepare for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bojan committed May 19, 2021
1 parent ec59afd commit 98a9f73
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

## Version 5.3.4

_2021-05-20_

* Update dependencies.
* Add unit tests.
* Fix small UI bugs.

## Version 5.3.3

_2021-04-30_
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.3"
releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.3"
debugImplementation "com.infinum.dbinspector:dbinspector:5.3.4"
releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.4"
```
**KotlinDSL**
```kotlin
debugImplementation("com.infinum.dbinspector:dbinspector:5.3.3")
releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.3")
debugImplementation("com.infinum.dbinspector:dbinspector:5.3.4")
releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.4")
```

### 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.3",
"versionCode": 5 * 100 * 100 + 3 * 100 + 3
"version" : "5.3.4",
"versionCode": 5 * 100 * 100 + 3 * 100 + 4
]
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
dbinspector = "5.3.3"
dbinspector = "5.3.4"
gradle = "4.2.1"
kotlin = "1.5.0"
coroutines = "1.5.0"
Expand Down

0 comments on commit 98a9f73

Please sign in to comment.