Skip to content

Commit

Permalink
chore(upgrade): upgrade version name(1.1.0->1.2.0) code(3->4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacksgong committed Sep 1, 2016
1 parent 367e229 commit 6eb59ff
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,14 @@

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

_2016-09-02_

#### New Interfaces

- Add `threaddebugger-no-op`: is lighter, it does not has any operation of `threaddebugger`, only has some empty classes, for don't import `threaddebugger` when release compile.

## Version 1.1.0

_2016-09-01_
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG_zh.md
Expand Up @@ -2,6 +2,14 @@

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

_2016-09-02_

#### 新接口

- 新增 `threaddebugger-no-op`: 十分轻量,不包含任何`threaddebugger`的代码, 目前只包含一些空Class, 便于release编译时不带上`threaddebugger`

## Version 1.1.0

_2016-09-01_
Expand Down
10 changes: 6 additions & 4 deletions README.md
Expand Up @@ -28,14 +28,16 @@ ThreadDebugger and ThreadPool is installed by adding the following dependency to

```groovy
dependencies {
// If you need use ThreadDebugger
compile 'cn.dreamtobe.threaddebugger:threaddebugger:1.1.0'
// If you need use ThreadPool
compile 'cn.dreamtobe.threaddebugger:threadpool:1.1.0'
// If you need use ThreadDebugger.
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.2.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.0'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.0'
}
```

- ThreadDebugger: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger/_latestVersion)
- ThreadDebugger-no-op: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger-threaddebugger-no-op/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger-threaddebugger-no-op/_latestVersion)
- ThreadPool: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger-threadpool/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger-threadpool/_latestVersion)

## II. Start monitor
Expand Down
10 changes: 6 additions & 4 deletions README_zh.md
Expand Up @@ -28,14 +28,16 @@ ThreadDebugger是一个简单易用的线程调试器,可以帮助您随时查

```groovy
dependencies {
// If you need use ThreadDebugger
compile 'cn.dreamtobe.threaddebugger:threaddebugger:1.1.0'
// If you need use ThreadPool
compile 'cn.dreamtobe.threaddebugger:threadpool:1.1.0'
// If you need use ThreadDebugger.
debugCompile 'cn.dreamtobe.threaddebugger:threaddebugger:1.2.0'
releaseCompile 'cn.dreamtobe.threaddebugger:threaddebugger-no-op:1.2.0'
// If you need use ThreadPool.
compile 'cn.dreamtobe.threaddebugger:threadpool:1.2.0'
}
```

- ThreadDebugger: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger/_latestVersion)
- ThreadDebugger-no-op: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger-threaddebugger-no-op/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger-threaddebugger-no-op/_latestVersion)
- ThreadPool: [ ![Download](https://api.bintray.com/packages/jacksgong/maven/ThreadDebugger-threadpool/images/download.svg) ](https://bintray.com/jacksgong/maven/ThreadDebugger-threadpool/_latestVersion)

## II. 启动监控
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
@@ -1,5 +1,5 @@
VERSION_NAME=1.1.0
VERSION_CODE=3
VERSION_NAME=1.2.0
VERSION_CODE=4
BUILD_TOOLS_VERSION=24.0.2
COMPILE_SDK_VERSION=24

Expand Down

0 comments on commit 6eb59ff

Please sign in to comment.