Skip to content

Commit

Permalink
jboot v1.6.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Sep 16, 2018
1 parent 5a67cf1 commit c87fe66
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.5</version>
<version>1.6.6</version>
</dependency>
```
#### 编写helloworld
Expand Down
2 changes: 1 addition & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Jboot Demos : https://gitee.com/fuhai/jboot/tree/master/src/test/java
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.5</version>
<version>1.6.6</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Jboot Demos : https://gitee.com/fuhai/jboot/tree/master/src/test/java
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.5</version>
<version>1.6.6</version>
</dependency>

```
Expand Down
4 changes: 4 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
jboot-1.6.6:
新增:JbootEvent 可以进行手动注册的相关接口
优化:升级 J2Cache 和 Skywalking 的相关依赖

jboot-1.6.5:
修复:PaginateDirectiveBase 当不设置page的时候回抛出空指针异常的问题
修复:文档笔误 JbootEvnet 修改为 JbootEvent
Expand Down
2 changes: 1 addition & 1 deletion docs/zh/about_jboot.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ QQ交流群: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.5</version>
<version>1.6.6</version>
</dependency>

```
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.6.5</version>
<version>1.6.6</version>
<packaging>jar</packaging>

<name>jboot</name>
Expand Down Expand Up @@ -430,7 +430,7 @@
<dependency>
<groupId>io.opentracing.brave</groupId>
<artifactId>brave-opentracing</artifactId>
<version>0.32.1</version>
<version>0.33.0</version>
</dependency>

<dependency>
Expand All @@ -442,7 +442,7 @@
<dependency>
<groupId>org.apache.skywalking</groupId>
<artifactId>apm-toolkit-opentracing</artifactId>
<version>5.0.0-beta2</version>
<version>5.0.0-RC2</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -482,7 +482,7 @@
<dependency>
<groupId>net.oschina.j2cache</groupId>
<artifactId>j2cache-core</artifactId>
<version>2.6.0-release</version>
<version>2.7.0-release</version>
<scope>provided</scope>
</dependency>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/JbootConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
public class JbootConfig {


private String version = "1.6.5";
private String version = "1.6.6";
private String mode = Jboot.MODE.DEV.getValue();
private boolean bannerEnable = true;
private String bannerFile = "banner.txt";
Expand Down

0 comments on commit c87fe66

Please sign in to comment.