Skip to content

Commit

Permalink
jboot v1.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed May 9, 2018
1 parent b50c196 commit eaaf797
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 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.4.9</version>
<version>1.5.0</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 @@ -12,7 +12,7 @@ QQ交流群: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.4.9</version>
<version>1.5.0</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ QQ-Group: 601440615
<dependency>
<groupId>io.jboot</groupId>
<artifactId>jboot</artifactId>
<version>1.4.9</version>
<version>1.5.0</version>
</dependency>

```
Expand Down
7 changes: 7 additions & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
jboot-1.5.0:
修复:metrics 访问 404 的问题
优化:删除 jboot model 自动缓存的功能(目前需要缓存自行通过 service 层添加 @Cacheable 进行缓存)
优化:删除 jboot model 自动发送数据库操作事件的功能
优化:ClassScanner 在某些情况下扫描不到类的问题


jboot-1.4.9:
优化:Shiro模块代码,使之更加简单易用
优化:ClassKits,防止在多线程下出现的异常问题
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.4.9</version>
<version>1.5.0</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion 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.4.9</version>
<version>1.5.0</version>
<packaging>jar</packaging>

<name>jboot</name>
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.4.9";
private String version = "1.5.0";
private String mode = Jboot.MODE.DEV.getValue();
private boolean bannerEnable = true;
private String bannerFile = "banner.txt";
Expand Down

0 comments on commit eaaf797

Please sign in to comment.