Skip to content

Commit 637fde8

Browse files
authored
Merge pull request #1720 from ThreeMammals/release/20.0
Release 20.0 codenamed as "Polish Apple"
2 parents cd94bbe + 65be4b6 commit 637fde8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ReleaseNotes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
## September 2023 (version {0}) aka Polish Apple release
2-
> Codenamed as **Polish Apple**
1+
## September 2023 (version {0}) aka [Polish Apple](https://www.google.com/search?q=Polish+Apple) release
2+
> Codenamed as **[Polish Apple](https://www.google.com/search?q=Polish+Apple)**

build.cake

+2-2
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Task("CreateReleaseNotes")
225225
{
226226
if (!statistics.Exists(s => s.Contributor == author))
227227
{
228-
var shortstat = GitHelper($"log --no-merges --author='{author}' --shortstat --pretty=oneline {lastRelease}..HEAD");
228+
var shortstat = GitHelper($"log --no-merges --author=\"{author}\" --shortstat --pretty=oneline {lastRelease}..HEAD");
229229
var data = shortstat
230230
.Where(x => shortstatRegex.IsMatch(x))
231231
.Select(x => shortstatRegex.Match(x))
@@ -303,7 +303,7 @@ Task("CreateReleaseNotes")
303303
releaseNotes.AddRange(starring);
304304
releaseNotes.Add("");
305305
releaseNotes.Add($"### Features in Release {releaseVersion}");
306-
var commitsHistory = GitHelper($"log --no-merges --date=format-local:\"%A, %B %d at %H:%M\" --pretty=format:\"<sub>%h by **%aN** on %ad &rarr;</sub>%n%s\" {lastRelease}..HEAD");
306+
var commitsHistory = GitHelper($"log --no-merges --date=format:\"%A, %B %d at %H:%M\" --pretty=format:\"<sub>%h by **%aN** on %ad &rarr;</sub>%n%s\" {lastRelease}..HEAD");
307307
releaseNotes.AddRange(commitsHistory);
308308

309309
EnsureDirectoryExists(packagesDir);

0 commit comments

Comments
 (0)