Skip to content

Commit 8a5ec95

Browse files
committed
🔖 release 2.1.2.RELEASE
1 parent 2f1c463 commit 8a5ec95

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ about: Report a general framework issue. help us improve this framework.
66
- System Version (e.g. Mac Os 10.14.3):
77
- Build tools (e.g. maven/gradle):
88
- JDK Version (e.g. `1.8`):
9-
- Blade Version (e.g. `2.1.2.BETA`):
9+
- Blade Version (e.g. `2.1.2.RELEASE`):
1010

1111
### Describe the bug
1212

@@ -19,7 +19,7 @@ Steps to reproduce the behavior:
1919
1. Operating system and its version
2020
2. Build tools (e.g. maven or gradle)
2121
3. JDK version and blade version(e.g `1.8`)
22-
4. Blade Version (e.g. `2.1.2.BETA`):
22+
4. Blade Version (e.g. `2.1.2.RELEASE`):
2323
5. See error
2424

2525
### Expected behavior:

.github/ISSUE_TEMPLATE/general_question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ Please provide the following information if applicable:
88

99
- Operating system and its version
1010
- Build tools (e.g. maven or gradle)
11-
- JDK version and blade version(e.g `2.1.2.BETA`)
11+
- JDK version and blade version(e.g `2.1.2.RELEASE`)

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.2.BETA</version>
67+
<version>2.1.2.RELEASE</version>
6868
</dependency>
6969
```
7070

7171
or `Gradle`:
7272

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

7777
Write the `main` method and the `Hello World`:
@@ -612,7 +612,7 @@ The `hello.html` template
612612
</html>
613613
```
614614

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

617617
## Redirects
618618

@@ -623,7 +623,7 @@ public void redirectToGithub(RouteContext ctx){
623623
}
624624
```
625625

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

628628
## Write Cookie
629629

@@ -635,7 +635,7 @@ public void writeCookie(RouteContext ctx){
635635
}
636636
```
637637

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

640640
## Web Hook
641641

README_CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>com.hellokaton</groupId>
6363
<artifactId>blade-core</artifactId>
64-
<version>2.1.2.BETA</version>
64+
<version>2.1.2.RELEASE</version>
6565
</dependency>
6666
```
6767

@@ -70,7 +70,7 @@
7070
或者 `Gradle`:
7171

7272
```sh
73-
compile 'com.hellokaton:blade-core:2.1.2.BETA'
73+
compile 'com.hellokaton:blade-core:2.1.2.RELEASE'
7474
```
7575

7676
编写 `main` 函数写一个 `Hello World`
@@ -614,7 +614,7 @@ public static void main(String[] args) {
614614
</html>
615615
```
616616

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

619619
## 重定向
620620

@@ -625,7 +625,7 @@ public void redirectToGithub(RouteContext ctx){
625625
}
626626
```
627627

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

630630
## 写入Cookie
631631

@@ -637,7 +637,7 @@ public void writeCookie(RouteContext ctx){
637637
}
638638
```
639639

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

642642
## 路由拦截
643643

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.2.BETA</version>
8+
<version>2.1.2.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
@@ -30,7 +30,7 @@ public interface BladeConst {
3030
int DEFAULT_SERVER_PORT = 9000;
3131
String DEFAULT_SERVER_ADDRESS = "0.0.0.0";
3232
String LOCAL_IP_ADDRESS = "127.0.0.1";
33-
String VERSION = "2.1.2.BETA";
33+
String VERSION = "2.1.2.RELEASE";
3434
String WEB_JARS = "/webjars/";
3535
String CLASSPATH = BladeKit.getCurrentClassPath();
3636
String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz";

blade-examples/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.2.BETA</version>
8+
<version>2.1.2.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.hellokaton</groupId>
2525
<artifactId>blade-security</artifactId>
26-
<version>2.1.2.BETA</version>
26+
<version>2.1.2.RELEASE</version>
2727
</dependency>
2828
<dependency>
2929
<groupId>org.projectlombok</groupId>

blade-kit/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.2.BETA</version>
8+
<version>2.1.2.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

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.2.BETA</version>
8+
<version>2.1.2.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.2.BETA</version>
8+
<version>2.1.2.RELEASE</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

pom.xml

Lines changed: 1 addition & 1 deletion
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.2.BETA</version>
8+
<version>2.1.2.RELEASE</version>
99
<packaging>pom</packaging>
1010

1111
<name>blade</name>

0 commit comments

Comments
 (0)