Changelog order is now from oldest to newest

This commit is contained in:
Master Kwoth 2017-06-10 08:55:58 +02:00
parent 7d5afdd234
commit b705a6ad11

View File

@ -9,7 +9,7 @@ function GitHub-Release($versionNumber)
$lastTag = git describe --tags --abbrev=0 $lastTag = git describe --tags --abbrev=0
$tag = "$lastTag..HEAD" $tag = "$lastTag..HEAD"
$clArr = (& 'git' 'log', $tag, '--oneline') $clArr = [array]::Reverse((& 'git' 'log', $tag, '--oneline'))
$changelog = $clArr | where { "$_" -notlike "*(POEditor.com)*" -and "$_" -notlike "*Merge branch*" -and "$_" -notlike "*Merge pull request*" -and "$_" -notlike "^-*" -and "$_" -notlike "*Merge remote tracking*" } $changelog = $clArr | where { "$_" -notlike "*(POEditor.com)*" -and "$_" -notlike "*Merge branch*" -and "$_" -notlike "*Merge pull request*" -and "$_" -notlike "^-*" -and "$_" -notlike "*Merge remote tracking*" }
$changelog = [string]::join([Environment]::NewLine, $changelog) $changelog = [string]::join([Environment]::NewLine, $changelog)