Improve whatsnew formatting

This commit is contained in:
Honza 2024-08-09 10:23:02 +02:00
parent aace22915e
commit 959c173589
2 changed files with 5 additions and 1 deletions

View File

@ -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)

View File

@ -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