@@ -11,24 +11,34 @@ The default texts are defined like this:
1111semver {
1212 changeLogTexts {
1313 headerTexts = mutableMapOf (
14- " fix" to " ### Bug Fixes \uD83D\uDC1E " ,
15- " feat" to " ### New Features \uD83C\uDF89 " ,
16- " test" to " ### Tests ✅ " ,
17- " docs" to " ### Documentation \uD83D\uDCD6 " ,
18- " deps" to " ### Dependency Updates \uD83D\uDE80 " ,
19- " build" to " ### Build \uD83D\uDC18 & CI ⚙\uFE0F " ,
20- " ci" to " ### Build \uD83D\uDC18 & CI ⚙\uFE0F " ,
21- " chore" to " ### Chores \uD83D\uDD27 " ,
22- " perf" to " ### Performance Enhancements ⚡ " ,
23- " refactor" to " ### Refactorings \uD83D\uDE9C "
14+ " fix" to " ### \uD83D\uDC1E Bug Fixes " ,
15+ " feat" to " ### \uD83C\uDF89 New Features " ,
16+ " test" to " ### ✅ Tests " ,
17+ " docs" to " ### \uD83D\uDCD6 Documentation " ,
18+ " deps" to " ### \uD83D\uDE80 Dependency Updates " ,
19+ " build" to " ### \uD83D\uDC18 Build & ⚙\uFE0F CI " ,
20+ " ci" to " ### \uD83D\uDC18 Build & ⚙\uFE0F CI " ,
21+ " chore" to " ### \uD83D\uDD27 Chores " ,
22+ " perf" to " ### ⚡ Performance Enhancements" ,
23+ " refactor" to " ### \uD83D\uDE9C Refactorings "
2424 )
2525 header = " ## What's Changed" // Set your custom header text
26- breakingChange = " ### Breaking Changes 🛠 " // Set your custom breaking change text
27- otherChange = " ### Other Changes \uD83D\uDCA1 " // Set your custom other change text
26+ breakingChange = " ### 🛠 Breaking Changes" // Set your custom breaking change text
27+ otherChange = " ### \uD83D\uDCA1 Other Changes " // Set your custom other change text
2828 }
2929}
3030```
3131
32+ Note: this is a change from how it looked before. If you want the emojis last like configure the plugin like this:
33+ ``` kotlin
34+ import git.semver.plugin.changelog.EmojisLastHeaderTexts
35+
36+ semver {
37+ changeLogTexts = EmojisLastHeaderTexts
38+ }
39+ ```
40+
41+
3242### Plain header text
3343
3444You can configure the header texts to be plain text instead of markdown
0 commit comments