Skip to content

Commit

Permalink
v2.0-rc.6 release (^.^)YYa!!
Browse files Browse the repository at this point in the history
  • Loading branch information
yangfuhai committed Feb 2, 2019
1 parent bfaf018 commit 95444c1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion changes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jboot v2.0-rc.5:
jboot v2.0-rc.6:
优化:把 JbootModel 的 `getIdValue()` 修改为 `_getIdValue()`,防止fastjson自动序列化会调用 get 方法出错的问题
修复:JbootModel 通过 RPC 请求数据返回客户端,然后进行 equals 会出错的问题

Expand Down
10 changes: 4 additions & 6 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>2.0-rc.5</version>
<version>2.0-rc.6</version>
<packaging>jar</packaging>

<name>jboot</name>
Expand Down Expand Up @@ -495,7 +495,7 @@
<version>2.2.1</version>
<executions>
<execution>
<phase>package</phase>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
Expand All @@ -507,7 +507,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>

<configuration>
<windowtitle>Jboot</windowtitle>
<doctitle>Jboot</doctitle>
Expand All @@ -521,10 +520,9 @@
<link>https://jboot.io</link>
</links>
</configuration>

<executions>
<execution>
<phase>package</phase>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
Expand All @@ -538,7 +536,7 @@
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<id>sign-artifacts</id>
<goals>
<goal>sign</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/jboot/JbootConsts.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
public class JbootConsts {

public static String VERSION = "2.0-rc.5";
public static String VERSION = "2.0-rc.6";


public static final String ATTR_REQUEST = "REQUEST";
Expand Down

0 comments on commit 95444c1

Please sign in to comment.