Skip to content

Commit

Permalink
Release version for 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
qianmoQ committed Feb 24, 2021
1 parent 09a4338 commit e22d4fa
Show file tree
Hide file tree
Showing 17 changed files with 48 additions and 17 deletions.
2 changes: 1 addition & 1 deletion clickhouse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion configuration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
4 changes: 2 additions & 2 deletions docs/_data/banner_notification.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
enabled: true
text: gcm v1.0.7 is release!
url: /2021/02/06/v1.0.7/
text: gcm v1.0.8 is released!
url: /2021/02/24/v1.0.8/
30 changes: 30 additions & 0 deletions docs/collections/_posts/2021-02-24-v1.0.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
title: Release 1.0.8 (2020-02-24)
type: major
---

Gcm Version for 1.0.8 is released! [GitHub Milestone](https://github.com/EdurtIO/incubator-gcm/milestone/5)

Thanks to the following contributors:

- [qianmoQ](https://github.com/qianmoQ)
- [why198852](https://github.com/why198852)

Thanks to the following users for providing issues:

- [GtoCm](https://github.com/GtoCm)

#### Docs changes

- Remove invalid mobile menu

#### Netty changes

- Rebuilding object based routing buffer
- Refactoring the parsing method of client request parameters
- Fix new String(byte[]) DM_DEFAULT_ENCODING
- Fix ParameterDispatcher file conflict
- Fix `@PathVariable` not working [issues-24](https://github.com/EdurtIO/incubator-gcm/issues/24)
- Support freemaker based view [issues-19](https://github.com/EdurtIO/incubator-gcm/issues/19)
- Rename PathHandler to HttpPathHandler
- Fix Error message oversimplification On netty [issues-22](https://github.com/EdurtIO/incubator-gcm/issues/22)
2 changes: 1 addition & 1 deletion docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mysql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion netty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public void triggerAction(FullHttpRequest httpRequest, FullHttpResponse httpResp
httpResponse.setStatus(HttpResponseStatus.NOT_FOUND);
LOGGER.error("The requested path <{}> was not found or not supported it!", requestUrl);
content = "Oops,the requested path was not found.";
} else {
}
else {
String methodName = router.getMethod().getName();
String controller = PropertiesUtils.getStringValue(configuration,
NettyConfiguration.CONTROLLER_PACKAGE,
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<artifactId>incubator-gcm</artifactId>
<packaging>pom</packaging>

<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>

<modules>
<module>configuration</module>
Expand Down
2 changes: 1 addition & 1 deletion postgresql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion presto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion redis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion script/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion zookeeper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>incubator-gcm</artifactId>
<groupId>io.edurt.gcm</groupId>
<version>1.0.8-SNAPSHOT</version>
<version>1.0.8</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit e22d4fa

Please sign in to comment.