Skip to content

Commit

Permalink
chore(upgrade): upgrade version name(1.2.0->1.2.1) code(4->5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacksgong committed Sep 9, 2016
1 parent 55a014c commit 87a434b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,15 @@

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

_2016-09-09_

#### Enhancement

- Improve Performance: Using `String#compareToIgnoreCase()` instead of `String#toLowCase()` and `String#startWith()` to reduce cost time in the `IThreadDebugger#refresh()` method.
- Improve Performance: Optimize the code style in thread-debugger library to improve the performance.

## Version 1.2.0

_2016-09-02_
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG_zh.md
Expand Up @@ -2,6 +2,15 @@

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

_2016-09-09_

#### 性能与提高

- 提高性能: 使用`String#compareToIgnoreCase()`代替`String#toLowCase()`+`String#startWith()`来减少在`IThreadDebugger#refresh()`中的耗时。
- 提高性能: 优化thread-debugger中的代码编写风格来优化其性能。

## Version 1.2.0

_2016-09-02_
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.2.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.0'
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.2.1'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.1'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.0'
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.1'
}
```

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.2.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.0'
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.2.1'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.1'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.0'
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,5 +1,5 @@
VERSION_NAME=1.2.0
VERSION_CODE=4
VERSION_NAME=1.2.1
VERSION_CODE=5
BUILD_TOOLS_VERSION=24.0.2
COMPILE_SDK_VERSION=24

Expand Down

0 comments on commit 87a434b

Please sign in to comment.