Skip to content

Commit

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

### :stop_sign: Breaking changes :stop_sign:
- [US00021](https://rally1.rallydev.com/#/search?keywords=US00021) Change route to have a smaller name (#13) ([9eb756f482b9a99](https://github.com/vijay-eis/mod-spring-sample/commit/9eb756f482b9a99))


### :sparkle: Features :sparkle:
- [US00022](https://rally1.rallydev.com/#/search?keywords=US00022) Change route to have a bigger name (#14) ([ddcd59cd020540d](https://github.com/vijay-eis/mod-spring-sample/commit/ddcd59cd020540d))


### :lady_beetle: Fixes :lady_beetle:
- [US00021](https://rally1.rallydev.com/#/search?keywords=US00021) Change route to have a smaller name (#13) ([9eb756f482b9a99](https://github.com/vijay-eis/mod-spring-sample/commit/9eb756f482b9a99))

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







## [v1.0.6](https://gitlab.com/html-validate/html-validate/compare/v1.0.6) (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.6</version>
<version>1.0.7</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 @@ -27,7 +27,7 @@
@Log4j2
public class Feature1Controller {

@GetMapping("/feature1")
@GetMapping("/f1")
public String index() {
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("/f2")
@GetMapping("/feature2")
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("/f21")
@GetMapping("/feature21")
public ResponseEntity<Map<String, String>> methodF21() {
log.info("Handling the /f21a route");
String keyPrefix = "FO_";
Expand Down

0 comments on commit ca7ff54

Please sign in to comment.