Skip to content

Commit

Permalink
🔖 release 2.1.2.RELEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
hellokaton committed May 9, 2022
1 parent 2f1c463 commit 8a5ec95
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Expand Up @@ -6,7 +6,7 @@ about: Report a general framework issue. help us improve this framework.
- System Version (e.g. Mac Os 10.14.3):
- Build tools (e.g. maven/gradle):
- JDK Version (e.g. `1.8`):
- Blade Version (e.g. `2.1.2.BETA`):
- Blade Version (e.g. `2.1.2.RELEASE`):

### Describe the bug

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

### Expected behavior:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/general_question.md
Expand Up @@ -8,4 +8,4 @@ Please provide the following information if applicable:

- Operating system and its version
- Build tools (e.g. maven or gradle)
- JDK version and blade version(e.g `2.1.2.BETA`)
- JDK version and blade version(e.g `2.1.2.RELEASE`)
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -64,14 +64,14 @@ Run with `Maven`:
<dependency>
<groupId>com.hellokaton</groupId>
<artifactId>blade-core</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</dependency>
```

or `Gradle`:

```sh
compile 'com.hellokaton:blade-core:2.1.2.BETA'
compile 'com.hellokaton:blade-core:2.1.2.RELEASE'
```

Write the `main` method and the `Hello World`:
Expand Down Expand Up @@ -612,7 +612,7 @@ The `hello.html` template
</html>
```

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

## Redirects

Expand All @@ -623,7 +623,7 @@ public void redirectToGithub(RouteContext ctx){
}
```

[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-)
[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-)

## Write Cookie

Expand All @@ -635,7 +635,7 @@ public void writeCookie(RouteContext ctx){
}
```

[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-)
[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-)

## Web Hook

Expand Down
10 changes: 5 additions & 5 deletions README_CN.md
Expand Up @@ -61,7 +61,7 @@
<dependency>
<groupId>com.hellokaton</groupId>
<artifactId>blade-core</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</dependency>
```

Expand All @@ -70,7 +70,7 @@
或者 `Gradle`:

```sh
compile 'com.hellokaton:blade-core:2.1.2.BETA'
compile 'com.hellokaton:blade-core:2.1.2.RELEASE'
```

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

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

## 重定向

Expand All @@ -625,7 +625,7 @@ public void redirectToGithub(RouteContext ctx){
}
```

[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-)
[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-)

## 写入Cookie

Expand All @@ -637,7 +637,7 @@ public void writeCookie(RouteContext ctx){
}
```

[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-)
[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-)

## 路由拦截

Expand Down
2 changes: 1 addition & 1 deletion blade-core/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.hellokaton</groupId>
<artifactId>blade</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Expand Up @@ -30,7 +30,7 @@ public interface BladeConst {
int DEFAULT_SERVER_PORT = 9000;
String DEFAULT_SERVER_ADDRESS = "0.0.0.0";
String LOCAL_IP_ADDRESS = "127.0.0.1";
String VERSION = "2.1.2.BETA";
String VERSION = "2.1.2.RELEASE";
String WEB_JARS = "/webjars/";
String CLASSPATH = BladeKit.getCurrentClassPath();
String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz";
Expand Down
4 changes: 2 additions & 2 deletions blade-examples/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.hellokaton</groupId>
<artifactId>blade</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.hellokaton</groupId>
<artifactId>blade-security</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
2 changes: 1 addition & 1 deletion blade-kit/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.hellokaton</groupId>
<artifactId>blade</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion blade-security/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>blade</artifactId>
<groupId>com.hellokaton</groupId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion blade-websocket/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.hellokaton</groupId>
<artifactId>blade</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.hellokaton</groupId>
<artifactId>blade</artifactId>
<version>2.1.2.BETA</version>
<version>2.1.2.RELEASE</version>
<packaging>pom</packaging>

<name>blade</name>
Expand Down

0 comments on commit 8a5ec95

Please sign in to comment.