Update version and change log to 2.1.0.

This commit is contained in:
Jake Wharton
2016-09-07 16:37:22 -04:00
parent 5d2df02af8
commit 44b4a106bb
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -1,6 +1,14 @@
Change Log
==========
Version 2.1.0 *(2016-09-07)*
----------------------------
* New: Explicitly run `adb` in 'brief' mode to ensure proper parsing.
* New: `-a` / `--all` flag shows all logs.
* Fix: Setting a tag width to 0 now correctly removes tags.
Version 2.0.0 *(2015-05-25)*
----------------------------
+1 -1
View File
@@ -27,7 +27,7 @@ import re
import subprocess
from subprocess import PIPE
__version__ = '2.0.0'
__version__ = '2.1.0'
LOG_LEVELS = 'VDIWEF'
LOG_LEVELS_MAP = dict([(LOG_LEVELS[i], i) for i in range(len(LOG_LEVELS))])