Skip to content

Commit d64b975

Browse files
committed
release 2.1.0.RELEASE
1 parent d8640c0 commit d64b975

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ Run with `Maven`:
6464
<dependency>
6565
<groupId>com.hellokaton</groupId>
6666
<artifactId>blade-core</artifactId>
67-
<version>2.1.0.BETA</version>
67+
<version>2.1.0.RELEASE</version>
6868
</dependency>
6969
```
7070

7171
or `Gradle`:
7272

7373
```sh
74-
compile 'com.hellokaton:blade-core:2.1.0.BETA'
74+
compile 'com.hellokaton:blade-core:2.1.0.RELEASE'
7575
```
7676

7777
Write the `main` method and the `Hello World`:
@@ -554,7 +554,7 @@ The `hello.html` template
554554
</html>
555555
```
556556

557-
[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-)
557+
[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-)
558558

559559
## Redirects
560560

@@ -565,7 +565,7 @@ public void redirectToGithub(RouteContext ctx){
565565
}
566566
```
567567

568-
[Redirect API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String-)
568+
[Redirect API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String-)
569569

570570
## Write Cookie
571571

@@ -577,7 +577,7 @@ public void writeCookie(RouteContext ctx){
577577
}
578578
```
579579

580-
[Cookie API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String-)
580+
[Cookie API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String-)
581581

582582
## Web Hook
583583

README_CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>com.hellokaton</groupId>
6262
<artifactId>blade-core</artifactId>
63-
<version>2.1.0.BETA</version>
63+
<version>2.1.0.RELEASE</version>
6464
</dependency>
6565
```
6666

@@ -69,7 +69,7 @@
6969
或者 `Gradle`:
7070

7171
```sh
72-
compile 'com.hellokaton:blade-core:2.1.0.BETA'
72+
compile 'com.hellokaton:blade-core:2.1.0.RELEASE'
7373
```
7474

7575
编写 `main` 函数写一个 `Hello World`
@@ -553,7 +553,7 @@ public static void main(String[] args) {
553553
</html>
554554
```
555555

556-
[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-)
556+
[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-)
557557

558558
## 重定向
559559

@@ -564,7 +564,7 @@ public void redirectToGithub(RouteContext ctx){
564564
}
565565
```
566566

567-
[Redirect API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String-)
567+
[Redirect API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#redirect-java.lang.String-)
568568

569569
## 写入Cookie
570570

@@ -576,7 +576,7 @@ public void writeCookie(RouteContext ctx){
576576
}
577577
```
578578

579-
[Cookie API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String-)
579+
[Cookie API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#cookie-java.lang.String-java.lang.String-)
580580

581581
## 路由拦截
582582

blade-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.hellokaton</groupId>
77
<artifactId>blade</artifactId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-core/src/main/java/com/hellokaton/blade/mvc/BladeConst.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface BladeConst {
3131
int DEFAULT_SERVER_PORT = 9000;
3232
String DEFAULT_SERVER_ADDRESS = "0.0.0.0";
3333
String LOCAL_IP_ADDRESS = "127.0.0.1";
34-
String VERSION = "2.1.0.BETA";
34+
String VERSION = "2.1.0.RELEASE";
3535
String WEB_JARS = "/webjars/";
3636
String CLASSPATH = BladeKit.getCurrentClassPath();
3737
String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz";

blade-examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.hellokaton</groupId>
77
<artifactId>blade</artifactId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-kit/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.hellokaton</groupId>
77
<artifactId>blade</artifactId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -17,7 +17,7 @@
1717
<artifactId>slf4j-api</artifactId>
1818
</dependency>
1919
<dependency>
20-
<groupId>com.bladejava</groupId>
20+
<groupId>com.hellokaton</groupId>
2121
<artifactId>blade-asm</artifactId>
2222
</dependency>
2323
<dependency>

blade-security/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>blade</artifactId>
77
<groupId>com.hellokaton</groupId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

blade-websocket/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.hellokaton</groupId>
77
<artifactId>blade</artifactId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.hellokaton</groupId>
77
<artifactId>blade</artifactId>
8-
<version>2.1.0.BETA</version>
8+
<version>2.1.0.RELEASE</version>
99
<packaging>pom</packaging>
1010

1111
<name>blade</name>
@@ -46,7 +46,7 @@
4646
<junit.version>4.13.2</junit.version>
4747
<slf4j-api.version>1.7.36</slf4j-api.version>
4848
<netty.version>4.1.76.Final</netty.version>
49-
<blade-asm.version>0.0.4</blade-asm.version>
49+
<blade-asm.version>0.1.1</blade-asm.version>
5050
<blade-log.version>0.1.6</blade-log.version>
5151
<blade-kit.version>${project.parent.version}</blade-kit.version>
5252
<blade-core.version>${project.parent.version}</blade-core.version>
@@ -66,7 +66,7 @@
6666
</dependency>
6767

6868
<dependency>
69-
<groupId>com.bladejava</groupId>
69+
<groupId>com.hellokaton</groupId>
7070
<artifactId>blade-asm</artifactId>
7171
<version>${blade-asm.version}</version>
7272
</dependency>

0 commit comments

Comments
 (0)