We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Changelog.Item.plus
1 parent 6641bf4 commit 992281eCopy full SHA for 992281e
CHANGELOG.md
@@ -4,6 +4,7 @@
4
5
### Fixed
6
- Wrong markdown render of changelog that use CRLF or CR line separator [#176](../../issues/176)
7
+- `Changelog.Item.plus` copies original item without restoring all original data [#179](../../issues/179)
8
9
## [2.1.0] - 2023-06-02
10
src/main/kotlin/org/jetbrains/changelog/Changelog.kt
@@ -323,6 +323,7 @@ data class Changelog(
323
return copy(
324
summary = summary.ifEmpty { item.summary },
325
items = items + item.items,
326
+ filterCallback = filterCallback,
327
)
328
}
329
0 commit comments