Skip to content

Commit

Permalink
Prepare for 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dino Kovač committed Dec 23, 2016
1 parent 03b2efa commit 9d070ff
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,8 +1,17 @@
Changelog
=========

## Version 3.4.0

_2016-12-23_

* New: Action to delete contents of a table (thanks @ignaciotcrespo)
* Fix: Build error when using support lib 24.0.0 (thanks @rkrsgithub and @gmbett)

## Version 3.3.0

_2016-06-27_

* New: Action to delete contents of a table (thanks @ignaciotcrespo)
* Fix: Build error when using support lib 24.0.0 (thanks @rkrsgithub and @gmbett)

Expand Down
4 changes: 1 addition & 3 deletions README.md
Expand Up @@ -12,16 +12,14 @@ Provides a simple way to view the contents of the in-app database for debugging
Add the library as a dependency to your ```build.gradle```

```groovy
debugCompile 'im.dino:dbinspector:3.3.0@aar'
debugCompile 'im.dino:dbinspector:3.4.0@aar'
```

Check the latest version on [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22im.dino%22%20a%3A%22dbinspector%22).

Now you have a launcher icon for viewing you in-app database which appears only on debug builds.
You can define `@string/dbinspector_app_name` to change the launcher icon label and `@drawable/dbinspector_ic_launcher` to change the launcher icon.

You probably want to define at least `@string/dbinspector_app_name` in your `strings.xml` to avoid confusion in case of multiple apps using DbInspector on the same device.

We also maintain a [changelog](https://github.com/infinum/android_dbinspector/blob/master/CHANGELOG.md).

### Removing launcher icon
Expand Down
3 changes: 1 addition & 2 deletions dbinspector/build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'
apply from: '../config/quality.gradle'

version = '3.3.0'
version = '3.4.0'
group = 'im.dino'

android {
Expand Down Expand Up @@ -51,7 +51,6 @@ configurations {
}

signing {
required { has("release") && gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
}

Expand Down

0 comments on commit 9d070ff

Please sign in to comment.