diff --git a/build-conventions-secant/src/main/kotlin/publish/ChangelogParser.kt b/build-conventions-secant/src/main/kotlin/publish/ChangelogParser.kt index 8da26acc..79a1b1f8 100644 --- a/build-conventions-secant/src/main/kotlin/publish/ChangelogParser.kt +++ b/build-conventions-secant/src/main/kotlin/publish/ChangelogParser.kt @@ -134,6 +134,9 @@ object ChangelogParser { } } return subList(startIndex, endIndex) + .onEach { log("Parser: before formatting item: $it") } + // To remove hard line wrap from AS + .map { it.replace("\n ", "") } .joinToString(prefix = "\n", separator = "\n") .takeIf { it.isNotBlank() }?.let { ChangelogEntrySection(title = title, content = it) diff --git a/docs/whatsNew/WHATS_NEW_EN.md b/docs/whatsNew/WHATS_NEW_EN.md index 4fb64c6b..52f35fa4 100644 --- a/docs/whatsNew/WHATS_NEW_EN.md +++ b/docs/whatsNew/WHATS_NEW_EN.md @@ -12,7 +12,8 @@ directly impact users rather than highlighting other key architectural updates.* ## [1.1.5 (706)] - 2024-08-09 ### Changed -- Adopted the latest Zcash SDK version 2.1.3, which brings a significant block synchronization speed-up and improved UTXOs fetching logic +- Adopted the latest Zcash SDK version 2.1.3, which brings a significant block synchronization speed-up and improved + UTXOs fetching logic ## [1.1.4 (700)] - 2024-07-23