Skip to content

Commit

Permalink
chore(upgrade): upgrade version name(1.5.0->1.5.2) code(11->13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacksgong committed Mar 23, 2017
1 parent b6f5bb7 commit ff78f67
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,14 +2,19 @@

> [CHANGELOG](https://github.com/Jacksgong/ThreadDebugger/blob/master/CHANGELOG.md)|[中文迭代日志](https://github.com/Jacksgong/ThreadDebugger/blob/master/CHANGELOG_zh.md)
## Version 1.5.0
## Version 1.5.2

_2017-03-23_

#### New Interfaces

- Add `ThreadDebugger#ignoreUnknownCategory`: Only print thread info which you explicitly add through `ThreadDebugger#add` for method `ThreadDebugger#drawUpEachThreadInfo`, `ThreadDebugger#drawUpEachThreadInfo`, `ThreadDebugger#drawUpEachThreadSizeDiff`, `ThreadDebugger#drawUpEachThreadInfoDiff`, `ThreadDebugger#isChanged`, `ThreadDebugger#isSizeChanged`.

#### Fixes

- Fix: fix delete split on wrong opportunity.
- Fix: fix can't match start-with-thread-name exactly.

## Version 1.4.0

_2016-10-09_
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG_zh.md
Expand Up @@ -2,14 +2,19 @@

> [CHANGELOG](https://github.com/Jacksgong/ThreadDebugger/blob/master/CHANGELOG.md)|[中文迭代日志](https://github.com/Jacksgong/ThreadDebugger/blob/master/CHANGELOG_zh.md)
## Version 1.5.0
## Version 1.5.2

_2017-03-23_

#### 新接口

- 新增 `ThreadDebugger#ignoreUnknownCategory`: 在进行输出时忽略未通过`ThreadDebugger#add`主动添加分类的线程变化。

#### 修复

- 修复: 修复了在错误的时机删除的输出分隔符。
- 修复: 修复在一些场景下,无法准确的匹配线程名的开头部分。

## Version 1.4.0

_2016-10-09_
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -29,10 +29,10 @@ ThreadDebugger and ThreadPool is installed by adding the following dependency to
```groovy
dependencies {
// If you need use ThreadDebugger.
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.5.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.5.0'
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.5.2'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.5.2'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.5.0'
compile 'cn.dreamtobe.threaddebugger:threadpool:1.5.2'
}
```

Expand Down
6 changes: 3 additions & 3 deletions README_zh.md
Expand Up @@ -29,10 +29,10 @@ ThreadDebugger是一个简单易用的线程调试器,可以帮助您随时查
```groovy
dependencies {
// If you need use ThreadDebugger.
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.5.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.5.0'
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.5.2'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.5.2'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.5.0'
compile 'cn.dreamtobe.threaddebugger:threadpool:1.5.2'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,5 +1,5 @@
VERSION_NAME=1.5.0
VERSION_CODE=11
VERSION_NAME=1.5.2
VERSION_CODE=13
BUILD_TOOLS_VERSION=25.0.0
COMPILE_SDK_VERSION=25

Expand Down

0 comments on commit ff78f67

Please sign in to comment.