Skip to content

Commit

Permalink
chore(upgrade): upgrade version name(1.3.2->1.3.3) code(8->9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacksgong committed Sep 11, 2016
1 parent d91558a commit a478cd2
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 42 deletions.
24 changes: 7 additions & 17 deletions CHANGELOG.md
Expand Up @@ -2,23 +2,7 @@

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

_2016-09-11_

#### Fixes

- Fix(thread-pool): For `exceed-wait-pool`, Mistake still to wait for a command in the main queue when there are commands in the `exceed-queue` need to execute.

## Version 1.3.1

_2016-09-11_

#### Fixes

- Fix: The construct method of `ExceedWait.Queue` is `package visible`, result in can't create it directly.

## Version 1.3.0
## Version 1.3.3

_2016-09-11_

Expand All @@ -30,6 +14,12 @@ _2016-09-11_

- Improve Practicability: Downgrade the min SDK version of the thread-pool library: 9->7.

#### Fixes

- Fix(thread-pool): Cover the case of only the `exceed-queue` has commands need to execute with the main queue is waiting for a command or there is no active command in the `exceed-wait-pool`.
- Fix(thread-pool): For `exceed-wait-pool`, Mistake still to wait for a command in the main queue when there are commands in the `exceed-queue` need to execute.
- Fix: The construct method of `ExceedWait.Queue` is `package visible`, result in can't create it directly.

## Version 1.2.1

_2016-09-09_
Expand Down
24 changes: 7 additions & 17 deletions CHANGELOG_zh.md
Expand Up @@ -2,23 +2,7 @@

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

_2016-09-11_

#### 修复

- 修复(thread-pool): 对于`exceed-wait-pool`,当`exceed-queue`中存在任务需要执行的时候,错误的还在等待主队列,导致`exceed-queue`中的队列无法及时的被执行。

## Version 1.3.1

_2016-09-11_

#### 修复

- 修复: `ExceedWait.Queue`的构造函数是`package visible`导致无法直接创建的问题。

## Version 1.3.0
## Version 1.3.3

_2016-09-11_

Expand All @@ -30,6 +14,12 @@ _2016-09-11_

- 提高实用性: 降低`thread-pool`库的minSDK版本: 9->7。

#### 修复

- 修复(thread-pool): 覆盖当仅仅只有`exceed-queue`中有需要执行的任务的时候,主队列还在等待任务入队或者没有执行中的任务的情况。
- 修复(thread-pool): 对于`exceed-wait-pool`,当`exceed-queue`中存在任务需要执行的时候,错误的还在等待主队列,导致`exceed-queue`中的队列无法及时的被执行。
- 修复: `ExceedWait.Queue`的构造函数是`package visible`导致无法直接创建的问题。

## Version 1.2.1

_2016-09-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.3.2'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.3.2'
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.3.3'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.3.3'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.3.2'
compile 'cn.dreamtobe.threaddebugger:threadpool:1.3.3'
}
```

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

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

Expand Down

0 comments on commit a478cd2

Please sign in to comment.