Skip to content

Commit

Permalink
v1.0.6 release
Browse files Browse the repository at this point in the history
v1.0.6 release changes
  • Loading branch information
vijay-eis authored Mar 3, 2023
2 parents 5622dd0 + fdf254b commit 7aba359
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
19 changes: 19 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## [v1.0.6](https://gitlab.com/html-validate/html-validate/compare/v1.0.6) (2023-03-03)



### :sparkle: Features :sparkle:
- [US00021](https://rally1.rallydev.com/#/search?keywords=US00021) Change route ([6961ac95f4b21fe](https://github.com/vijay-eis/mod-spring-sample/commit/6961ac95f4b21fe))


### :lady_beetle: Fixes :lady_beetle:
- [US00020](https://rally1.rallydev.com/#/search?keywords=US00020) Fix message ([8c9659dab4effae](https://github.com/vijay-eis/mod-spring-sample/commit/8c9659dab4effae))

## [v1.0.5](https://gitlab.com/html-validate/html-validate/compare/v1.0.5) (2023-03-03)







## [v1.0.5](https://gitlab.com/html-validate/html-validate/compare/v1.0.5) (2023-03-03)


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.vijay</groupId>
<artifactId>mod-spring-sample</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<name>mod-spring-sample</name>
<description>mod-spring-sample</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Feature1Controller {

@GetMapping("/feature1")
public String index() {
log.info("Handling index route for feature 1....");
log.info("Handle index route for feature 1....");
return "Some message";
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@Log4j2
public class Feature2Controller {

@GetMapping("/feature2")
@GetMapping("/f2")
public ResponseEntity<Map<String, String>> methodF2() {
log.info("Handling the /f2 route");
Map<String, String> jsonResponse = new java.util.HashMap<String, String>(Collections.EMPTY_MAP);
Expand All @@ -41,7 +41,7 @@ public ResponseEntity<Map<String, String>> methodF2() {
return ResponseEntity.ok(jsonResponse);
}

@GetMapping("/feature21")
@GetMapping("/f21")
public ResponseEntity<Map<String, String>> methodF21() {
log.info("Handling the /f21a route");
String keyPrefix = "FO_";
Expand Down

0 comments on commit 7aba359

Please sign in to comment.