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.
1 parent c25a6b0 commit 13d7015Copy full SHA for 13d7015
rider/backend.gradle
@@ -43,6 +43,14 @@ task packReSharperPlugin(type: nugetPack.class) {
43
def changelogNotes = changelog.get(pluginVersion).withFilter({ line ->
44
!line.startsWith("- Rider:") && !line.startsWith("- Unity editor:")
45
}).toPlainText().trim()
46
+
47
+ // There's a bug in the changelog plugin that adds extra newlines on Windows, possibly
48
+ // due to Unix/Windows line ending mismatch.
49
+ // Remove this hack once JetBrains/gradle-changelog-plugin#8 is fixed
50
+ if (isWindows) {
51
+ changelogNotes = changelogNotes.replaceAll("\n\n", "\r\n")
52
+ }
53
54
def ReleaseNotes = """New in $pluginVersion
55
56
${changelogNotes}
0 commit comments