Skip to content

Commit

Permalink
Bump the version to 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oobut committed Mar 22, 2018
1 parent 4af45f1 commit 5cf077e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Simple, pretty and powerful logger for android
### Setup
Download
```groovy
compile 'com.orhanobut:logger:2.1.1'
implementation 'com.orhanobut:logger:2.2.0'
```

Initialize
Expand All @@ -32,7 +32,7 @@ Logger.e("error");
Logger.w("warning");
Logger.v("verbose");
Logger.i("information");
Logger.wtf("wtf!!!!");
Logger.wtf("What a Terrible Failure");
```

String format arguments are supported
Expand Down Expand Up @@ -98,7 +98,7 @@ Logger.addLogAdapter(new DiskLogAdapter(formatStrategy));


### More
- Use the filter for a better result. PRETTY_LOGGER or your custom tag
- Use filter for a better result. PRETTY_LOGGER or your custom tag
- Make sure that wrap option is disabled
- You can also simplify output by changing settings.

Expand All @@ -114,13 +114,9 @@ Timber.plant(new Timber.DebugTree() {
});
```

### Breaking changes
- Initialization is changed. No backward compatibility support. Use `Logger.addLogAdapter`
- LogLevel is removed. Use the new `isLoggable` approach

### License
<pre>
Copyright 2017 Orhan Obut
Copyright 2018 Orhan Obut

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=2.1.1
VERSION_NAME=2.2.0
GROUP=com.orhanobut

POM_DESCRIPTION=Simple, Pretty and Advanced Logger
Expand Down

0 comments on commit 5cf077e

Please sign in to comment.