From 959c173589b8f7c3be9058e8755d8ff3388acafc Mon Sep 17 00:00:00 2001 From: Honza Date: Fri, 9 Aug 2024 10:23:02 +0200 Subject: [PATCH] Improve whatsnew formatting --- .../src/main/kotlin/publish/ChangelogParser.kt | 3 +++ docs/whatsNew/WHATS_NEW_EN.md | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) 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