Skip to content

Commit

Permalink
update pom version to 2.2.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Jun 25, 2017
1 parent 52afae4 commit f044177
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README-EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ The current version Java API documentation: <http://alibaba.github.io/transmitta
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ java -Xbootclasspath/a:transmittable-thread-local-2.0.0.jar \
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</dependency>
```

Expand Down
6 changes: 4 additions & 2 deletions docs/release-action-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
1. 从master分支新建发布分支
1. 在发布分支上,更新版本号及相关信息
- 更新POM的版本号
- 更新badge的引用,由master分支名改成Tag名
- 更新badge的引用,由master分支名改成Tag名
`sed 's/master/v2.x.x/g' -i README*`
- 更新README中示例Maven依赖的版本
1. 新建并Push Tag,如`v1.2.3`
1. 新建并Push Tag,如`v1.2.3`
`git tag -m 'release v2.x.x' v2.x.x`
1. 等待Tag的CI通过 <https://travis-ci.org/alibaba/transmittable-thread-local/builds>
1. 发布版本到Maven中央库
1. 更新JavaDoc
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.alibaba</groupId>
<artifactId>transmittable-thread-local</artifactId>
<version>2.1.1-SNAPSHOT</version>
<version>2.2.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>TransmittableThreadLocal(TTL)</name>
<description>a simple lib for transmitting ThreadLocal value between thread even using thread pool.</description>
Expand Down Expand Up @@ -189,7 +189,7 @@
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<links>
<link>http://docs.oracle.com/javase/7/docs/api</link>
<link>http://docs.oracle.com/javase/8/docs/api</link>
</links>
<overview>src/api/overview.html</overview>
<additionalJOptions>
Expand Down

0 comments on commit f044177

Please sign in to comment.