Skip to content

Commit 69fcede

Browse files
authored
Merge pull request #653 from Backbase/fix/issue_211
Issue 211: Fix typo in changelogRenderer parameter in DiffMojo
2 parents b16eed4 + fb44d73 commit 69fcede

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ It currently consists of
1616
# Release Notes
1717
BOAT is still under development and subject to change.
1818

19+
## 0.17.22
20+
* boat-maven-plugin
21+
* Issue 211: Fix typo in changelogRenderer parameter in DiffMojo.java (#652) @talbot
1922
## 0.17.21
2023
* boat-spring, boat-java
2124
* Issue 649: missing BigDecimalCustomSerializer.java (#650) @walaniam

boat-maven-plugin/src/main/java/com/backbase/oss/boat/DiffMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class DiffMojo extends AbstractMojo {
4040
@Parameter(name = "writeChangelog", defaultValue = "false")
4141
private boolean writeChangelog;
4242

43-
@Parameter(name = "changeLogRenderer", defaultValue = "markdown")
43+
@Parameter(name = "changelogRenderer", defaultValue = "markdown")
4444
private String changelogRenderer;
4545

4646
@Parameter(name = "changelogOutput", defaultValue = "${project.build.directory}/changelog")

0 commit comments

Comments
 (0)