Skip to content

Commit e22d4fa

Browse files
committed
Release version for 1.0.8
1 parent 09a4338 commit e22d4fa

File tree

17 files changed

+48
-17
lines changed

17 files changed

+48
-17
lines changed

clickhouse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

configuration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

docs/_data/banner_notification.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
enabled: true
2-
text: gcm v1.0.7 is release!
3-
url: /2021/02/06/v1.0.7/
2+
text: gcm v1.0.8 is released!
3+
url: /2021/02/24/v1.0.8/
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
title: Release 1.0.8 (2020-02-24)
3+
type: major
4+
---
5+
6+
Gcm Version for 1.0.8 is released! [GitHub Milestone](https://github.com/EdurtIO/incubator-gcm/milestone/5)
7+
8+
Thanks to the following contributors:
9+
10+
- [qianmoQ](https://github.com/qianmoQ)
11+
- [why198852](https://github.com/why198852)
12+
13+
Thanks to the following users for providing issues:
14+
15+
- [GtoCm](https://github.com/GtoCm)
16+
17+
#### Docs changes
18+
19+
- Remove invalid mobile menu
20+
21+
#### Netty changes
22+
23+
- Rebuilding object based routing buffer
24+
- Refactoring the parsing method of client request parameters
25+
- Fix new String(byte[]) DM_DEFAULT_ENCODING
26+
- Fix ParameterDispatcher file conflict
27+
- Fix `@PathVariable` not working [issues-24](https://github.com/EdurtIO/incubator-gcm/issues/24)
28+
- Support freemaker based view [issues-19](https://github.com/EdurtIO/incubator-gcm/issues/19)
29+
- Rename PathHandler to HttpPathHandler
30+
- Fix Error message oversimplification On netty [issues-22](https://github.com/EdurtIO/incubator-gcm/issues/22)

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

mysql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

netty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>incubator-gcm</artifactId>
88
<groupId>io.edurt.gcm</groupId>
9-
<version>1.0.8-SNAPSHOT</version>
9+
<version>1.0.8</version>
1010
</parent>
1111

1212
<modelVersion>4.0.0</modelVersion>

netty/src/main/java/io/edurt/gcm/netty/dispatcher/RequestDispatcher.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ public void triggerAction(FullHttpRequest httpRequest, FullHttpResponse httpResp
8181
httpResponse.setStatus(HttpResponseStatus.NOT_FOUND);
8282
LOGGER.error("The requested path <{}> was not found or not supported it!", requestUrl);
8383
content = "Oops,the requested path was not found.";
84-
} else {
84+
}
85+
else {
8586
String methodName = router.getMethod().getName();
8687
String controller = PropertiesUtils.getStringValue(configuration,
8788
NettyConfiguration.CONTROLLER_PACKAGE,

0 commit comments

Comments
 (0)