From 2bf644b5a24af15a6742760d5273163de1f1f75d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Wed, 27 Mar 2024 14:38:19 +0100 Subject: [PATCH] Fix `Milestone` JSON bindings in `github-changelog` helper The description can be empty in which case it's `Nil`. --- scripts/github-changelog.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/github-changelog.cr b/scripts/github-changelog.cr index f2d277f258e7..f33238aae750 100755 --- a/scripts/github-changelog.cr +++ b/scripts/github-changelog.cr @@ -87,7 +87,7 @@ end record Milestone, closed_at : Time?, - description : String, + description : String?, due_on : Time?, title : String, pull_requests : Array(PullRequest) do