From d64b975d956432c9855ec98fbbe56ea156bd78be Mon Sep 17 00:00:00 2001 From: biezhi Date: Wed, 4 May 2022 20:54:56 +0800 Subject: [PATCH] release 2.1.0.RELEASE --- README.md | 10 +++++----- README_CN.md | 10 +++++----- blade-core/pom.xml | 2 +- .../main/java/com/hellokaton/blade/mvc/BladeConst.java | 2 +- blade-examples/pom.xml | 2 +- blade-kit/pom.xml | 4 ++-- blade-security/pom.xml | 2 +- blade-websocket/pom.xml | 2 +- pom.xml | 6 +++--- 9 files changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 6606a29a..d4962c74 100644 --- a/README.md +++ b/README.md @@ -64,14 +64,14 @@ Run with `Maven`: com.hellokaton blade-core - 2.1.0.BETA + 2.1.0.RELEASE ``` or `Gradle`: ```sh -compile 'com.hellokaton:blade-core:2.1.0.BETA' +compile 'com.hellokaton:blade-core:2.1.0.RELEASE' ``` Write the `main` method and the `Hello World`: @@ -554,7 +554,7 @@ The `hello.html` template ``` -[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-) +[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-) ## Redirects @@ -565,7 +565,7 @@ public void redirectToGithub(RouteContext ctx){ } ``` -[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-) +[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-) ## Write Cookie @@ -577,7 +577,7 @@ public void writeCookie(RouteContext ctx){ } ``` -[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-) +[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-) ## Web Hook diff --git a/README_CN.md b/README_CN.md index 6d1c5ccd..ea42cb4e 100644 --- a/README_CN.md +++ b/README_CN.md @@ -60,7 +60,7 @@ com.hellokaton blade-core - 2.1.0.BETA + 2.1.0.RELEASE ``` @@ -69,7 +69,7 @@ 或者 `Gradle`: ```sh -compile 'com.hellokaton:blade-core:2.1.0.BETA' +compile 'com.hellokaton:blade-core:2.1.0.RELEASE' ``` 编写 `main` 函数写一个 `Hello World`: @@ -553,7 +553,7 @@ public static void main(String[] args) { ``` -[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.BETA/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-) +[Render API](http://static.javadoc.io/com.hellokaton/blade-core/2.1.0.RELEASE/com/hellokaton/blade/mvc/http/Response.html#render-com.ModelAndView-) ## 重定向 @@ -564,7 +564,7 @@ public void redirectToGithub(RouteContext ctx){ } ``` -[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-) +[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-) ## 写入Cookie @@ -576,7 +576,7 @@ public void writeCookie(RouteContext ctx){ } ``` -[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-) +[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-) ## 路由拦截 diff --git a/blade-core/pom.xml b/blade-core/pom.xml index 1ef6b017..a67adbba 100644 --- a/blade-core/pom.xml +++ b/blade-core/pom.xml @@ -5,7 +5,7 @@ com.hellokaton blade - 2.1.0.BETA + 2.1.0.RELEASE 4.0.0 diff --git a/blade-core/src/main/java/com/hellokaton/blade/mvc/BladeConst.java b/blade-core/src/main/java/com/hellokaton/blade/mvc/BladeConst.java index 07d7b775..d16813b8 100644 --- a/blade-core/src/main/java/com/hellokaton/blade/mvc/BladeConst.java +++ b/blade-core/src/main/java/com/hellokaton/blade/mvc/BladeConst.java @@ -31,7 +31,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.0.BETA"; + String VERSION = "2.1.0.RELEASE"; String WEB_JARS = "/webjars/"; String CLASSPATH = BladeKit.getCurrentClassPath(); String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz"; diff --git a/blade-examples/pom.xml b/blade-examples/pom.xml index 2dfebac2..54542e16 100644 --- a/blade-examples/pom.xml +++ b/blade-examples/pom.xml @@ -5,7 +5,7 @@ com.hellokaton blade - 2.1.0.BETA + 2.1.0.RELEASE 4.0.0 diff --git a/blade-kit/pom.xml b/blade-kit/pom.xml index 3efe216e..93f75c62 100644 --- a/blade-kit/pom.xml +++ b/blade-kit/pom.xml @@ -5,7 +5,7 @@ com.hellokaton blade - 2.1.0.BETA + 2.1.0.RELEASE 4.0.0 @@ -17,7 +17,7 @@ slf4j-api - com.bladejava + com.hellokaton blade-asm diff --git a/blade-security/pom.xml b/blade-security/pom.xml index bb6cea68..eecb393e 100644 --- a/blade-security/pom.xml +++ b/blade-security/pom.xml @@ -5,7 +5,7 @@ blade com.hellokaton - 2.1.0.BETA + 2.1.0.RELEASE 4.0.0 diff --git a/blade-websocket/pom.xml b/blade-websocket/pom.xml index 16b5fb29..47468220 100644 --- a/blade-websocket/pom.xml +++ b/blade-websocket/pom.xml @@ -5,7 +5,7 @@ com.hellokaton blade - 2.1.0.BETA + 2.1.0.RELEASE 4.0.0 diff --git a/pom.xml b/pom.xml index 31968748..5ca0cf7b 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.hellokaton blade - 2.1.0.BETA + 2.1.0.RELEASE pom blade @@ -46,7 +46,7 @@ 4.13.2 1.7.36 4.1.76.Final - 0.0.4 + 0.1.1 0.1.6 ${project.parent.version} ${project.parent.version} @@ -66,7 +66,7 @@ - com.bladejava + com.hellokaton blade-asm ${blade-asm.version}