Skip to content

Commit 8057c1e

Browse files
authored
[Infra] Use - instead of * when moving changelog entries around (#7462)
The merge back action uses the code in \`Changelog.kt\` to ensure unreleased entries in the CHANGELOG.md files are moved to the corresponding section after being released. Since we have started formatting our markdown files, we rely on \`-\` as a list marker, rather than \`\*\`, which was the old format. This change updates \`Changelog.kt\` to use the right character.
1 parent a68b884 commit 8057c1e

File tree

1 file changed

+1
-1
lines changed
  • plugins/src/main/java/com/google/firebase/gradle/plugins

1 file changed

+1
-1
lines changed

plugins/src/main/java/com/google/firebase/gradle/plugins/Changelog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ data class ReleaseContent(val subtext: String, val changes: List<Change>) {
326326
*/
327327
data class Change(val type: ChangeType, val message: String) {
328328

329-
override fun toString(): String = "* [$type] $message"
329+
override fun toString(): String = "- [$type] $message"
330330

331331
companion object {
332332
/**

0 commit comments

Comments
 (0)