Skip to content

Commit 5c39b45

Browse files
committed
👷‍♀️ escape semicolons and commas in release notes
1 parent 5c8474d commit 5c39b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/Build.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Build : NukeBuild {
8080
.SetTitle("JSON5")
8181
.SetDescription("JSON5 for your dotnet appsettings files.")
8282
.SetPackageTags("JSON5 JSON parser translator deserializer appsettings configuration hosting")
83-
.SetPackageReleaseNotes(ReleaseNotes.Replace(';', ','))
83+
.SetPackageReleaseNotes(ReleaseNotes.Replace(";", "%3B").Replace(",", "%2C"))
8484
.SetAuthors("Robert Hofmann")
8585
.AddProcessAdditionalArguments("-p:PackageLicenseExpression=MIT")
8686
.SetRepositoryUrl("https://github.com/bert2/json5-dotnet.git")

0 commit comments

Comments
 (0)