Skip to content

Commit

Permalink
Merge pull request #1720 from ThreeMammals/release/20.0
Browse files Browse the repository at this point in the history
Release 20.0 codenamed as "Polish Apple"
  • Loading branch information
raman-m committed Oct 7, 2023
2 parents cd94bbe + 65be4b6 commit 637fde8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## September 2023 (version {0}) aka Polish Apple release
> Codenamed as **Polish Apple**
## September 2023 (version {0}) aka [Polish Apple](https://www.google.com/search?q=Polish+Apple) release
> Codenamed as **[Polish Apple](https://www.google.com/search?q=Polish+Apple)**
4 changes: 2 additions & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ Task("CreateReleaseNotes")
{
if (!statistics.Exists(s => s.Contributor == author))
{
var shortstat = GitHelper($"log --no-merges --author='{author}' --shortstat --pretty=oneline {lastRelease}..HEAD");
var shortstat = GitHelper($"log --no-merges --author=\"{author}\" --shortstat --pretty=oneline {lastRelease}..HEAD");
var data = shortstat
.Where(x => shortstatRegex.IsMatch(x))
.Select(x => shortstatRegex.Match(x))
Expand Down Expand Up @@ -303,7 +303,7 @@ Task("CreateReleaseNotes")
releaseNotes.AddRange(starring);
releaseNotes.Add("");
releaseNotes.Add($"### Features in Release {releaseVersion}");
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");
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");
releaseNotes.AddRange(commitsHistory);

EnsureDirectoryExists(packagesDir);
Expand Down

0 comments on commit 637fde8

Please sign in to comment.