Skip to content

Commit

Permalink
release branch 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
houbb committed Feb 21, 2019
1 parent 5d32a28 commit c5afe07
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 12 deletions.
11 changes: 10 additions & 1 deletion doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,13 @@

| 序号 | 变更类型 | 说明 | 时间 | 备注 |
|:---|:---|:---|:---|:--|
| 1 | A | markdown 类型文档的生成 | 2019-02-19 23:34:16 | |
| 1 | A | markdown 类型文档的生成 | 2019-02-19 23:34:16 | |


# release_0.0.2

| 序号 | 变更类型 | 说明 | 时间 | 备注 |
|:---|:---|:---|:---|:--|
| 1 | A | 添加包信息 | 2019-02-21 23:51:14 | |
| 2 | A | 初步添加方法的 @see @throw 的相关信息 | 2019-02-21 23:51:14 | |
| 3 | O | 文档的优化调整 | 2019-02-21 23:51:14 | |
17 changes: 17 additions & 0 deletions doc/issues/v0.0.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# 全局属性

初始化构建的时候,存放一个全局的 javaClass 信息 map,并且加载到内存中。

用于 @see @throw 列表的信息获取。

# 继续补全信息。

# 后续优化方向

所有的版本列表

since 列表

author 列表

需要一个 `IDocContext`
2 changes: 0 additions & 2 deletions doc/issues/v0.1.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# 添加 word 文档支持。

# 多线程处理

提升性能。

1 change: 1 addition & 0 deletions doc/issues/v0.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

Type 可以映射为对应的中文。

支持用户自定义。
3 changes: 3 additions & 0 deletions doc/issues/v0.3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 多线程处理

提升性能。
2 changes: 1 addition & 1 deletion idoc-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>idoc</artifactId>
<groupId>com.github.houbb</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion idoc-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>idoc</artifactId>
<groupId>com.github.houbb</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion idoc-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>idoc</artifactId>
<groupId>com.github.houbb</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion idoc-ftl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>idoc</artifactId>
<groupId>com.github.houbb</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions idoc-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>idoc</artifactId>
<groupId>com.github.houbb</groupId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -32,7 +32,7 @@
<plugin>
<groupId>com.github.houbb</groupId>
<artifactId>idoc-core</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>
<configuration>
<isAllInOne>true</isAllInOne>
<generates>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.github.houbb</groupId>
<artifactId>idoc</artifactId>
<packaging>pom</packaging>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>

<modules>
<module>idoc-api</module>
Expand Down
4 changes: 2 additions & 2 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
echo "============================= RELEASE START..."

## 版本号信息(需要手动指定)
oldVersion="0.0.1"
newVersion="0.0.2"
oldVersion="0.0.2"
newVersion="0.0.3"
projectName="idoc"

# release 项目版本
Expand Down

0 comments on commit c5afe07

Please sign in to comment.