Skip to content

Commit

Permalink
Merge pull request #159 from biezhi/dev
Browse files Browse the repository at this point in the history
🔖 release 2.0.5
  • Loading branch information
hellokaton committed Dec 15, 2017
2 parents ae70cd5 + 5bc00a1 commit 02e1ec1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -60,7 +60,7 @@ Create a basic `Maven` project
<dependency>
<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.5-BETA2</version>
<version>2.0.5-RELEASE</version>
</dependency>
```

Expand All @@ -69,7 +69,7 @@ Create a basic `Maven` project
or `Gradle`:

```sh
compile 'com.bladejava:blade-mvc:2.0.5-BETA2'
compile 'com.bladejava:blade-mvc:2.0.5-RELEASE'
```

Write `main` method, try `Hello World`
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Expand Up @@ -60,7 +60,7 @@
<dependency>
<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.5-BETA2</version>
<version>2.0.5-RELEASE</version>
</dependency>
```

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

```sh
compile 'com.bladejava:blade-mvc:2.0.5-BETA2'
compile 'com.bladejava:blade-mvc:2.0.5-RELEASE'
```

编写 `main` 函数写一个 `Hello World`
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.bladejava</groupId>
<artifactId>blade-mvc</artifactId>
<version>2.0.5-BETA2</version>
<version>2.0.5-RELEASE</version>
<packaging>jar</packaging>

<name>blade</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/blade/mvc/Const.java
Expand Up @@ -30,7 +30,7 @@ public interface Const {
int DEFAULT_SERVER_PORT = 9000;
String DEFAULT_SERVER_ADDRESS = "0.0.0.0";
String LOCAL_IP_ADDRESS = "127.0.0.1";
String VERSION = "2.0.5-BETA1";
String VERSION = "2.0.5-RELEASE";
String WEB_JARS = "/webjars/";
String CLASSPATH = new File(Const.class.getResource("/").getPath()).getPath();
String CONTENT_TYPE_HTML = "text/html; charset=UTF-8";
Expand Down

0 comments on commit 02e1ec1

Please sign in to comment.