This is an automated email from the ASF dual-hosted git repository.
guoyp pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/griffin.git
The following commit(s) were added to refs/heads/master by this push:
new 6355346 Update version information for new release.
6355346 is described below
commit 635534633c96c9feba140312ddbdfdb148520097
Author: Eugene <[email protected]>
AuthorDate: Thu Apr 4 09:43:29 2019 +0800
Update version information for new release.
change version 0.4.0 --> 0.5.0
Author: Eugene <[email protected]>
Closes #495 from toyboxman/rel-0.5.
---
.../main/java/org/apache/griffin/core/info/GriffinInfoController.java | 2 +-
service/src/main/resources/banner.txt | 2 +-
.../java/org/apache/griffin/core/info/GriffinInfoControllerTest.java | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/service/src/main/java/org/apache/griffin/core/info/GriffinInfoController.java
b/service/src/main/java/org/apache/griffin/core/info/GriffinInfoController.java
index 4280095..f4b449c 100644
---
a/service/src/main/java/org/apache/griffin/core/info/GriffinInfoController.java
+++
b/service/src/main/java/org/apache/griffin/core/info/GriffinInfoController.java
@@ -29,6 +29,6 @@ public class GriffinInfoController {
@RequestMapping(value = "/version", method = RequestMethod.GET)
public String greeting() {
- return "0.4.0";
+ return "0.5.0";
}
}
diff --git a/service/src/main/resources/banner.txt
b/service/src/main/resources/banner.txt
index a29770f..4b81cb9 100644
--- a/service/src/main/resources/banner.txt
+++ b/service/src/main/resources/banner.txt
@@ -2,4 +2,4 @@ _________________ _________________________________________ __
__ ____/___ __ \____ _/___ ____/___ ____/____ _/___ | / /
_ / __ __ /_/ / __ / __ /_ __ /_ __ / __ |/ /
/ /_/ / _ _, _/ __/ / _ __/ _ __/ __/ / _ /| /
-\____/ /_/ |_| /___/ /_/ /_/ /___/ /_/ |_/ version: 0.4.0
+\____/ /_/ |_| /___/ /_/ /_/ /___/ /_/ |_/ version: 0.5.0
diff --git
a/service/src/test/java/org/apache/griffin/core/info/GriffinInfoControllerTest.java
b/service/src/test/java/org/apache/griffin/core/info/GriffinInfoControllerTest.java
index e6e1941..90e3f3b 100644
---
a/service/src/test/java/org/apache/griffin/core/info/GriffinInfoControllerTest.java
+++
b/service/src/test/java/org/apache/griffin/core/info/GriffinInfoControllerTest.java
@@ -43,6 +43,6 @@ public class GriffinInfoControllerTest {
public void testGreeting() throws Exception {
mockMvc.perform(get(URLHelper.API_VERSION_PATH + "/version"))
.andExpect(status().isOk())
- .andExpect(jsonPath("$", is("0.4.0")));
+ .andExpect(jsonPath("$", is("0.5.0")));
}
}