Skip to content

Commit 89d3d63

Browse files
author
Timothy Mothra
authored
Merge pull request #1324 from microsoft/develop
merge DEVELOP to MASTER (prep 2.12-Beta4)
2 parents 09ec423 + add45ce commit 89d3d63

File tree

41 files changed

+2467
-1367
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2467
-1367
lines changed

.props/_GlobalStaticVersion.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<SemanticVersionMajor>2</SemanticVersionMajor>
1414
<SemanticVersionMinor>12</SemanticVersionMinor> <!-- If changing the Minor version, also update the Date value. -->
1515
<SemanticVersionPatch>0</SemanticVersionPatch>
16-
<PreReleaseMilestone>beta3</PreReleaseMilestone> <!--Valid values: beta1, beta2, EMPTY for stable -->
16+
<PreReleaseMilestone>beta4</PreReleaseMilestone> <!--Valid values: beta1, beta2, EMPTY for stable -->
1717
<!--
1818
Date when Semantic Version was changed.
1919
Update for every MINOR release.

.scripts/release_GenerateReleaseMetadata.ps1

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,9 @@ Function Get-ChangelogText ([string]$sourcePath, [string]$versionName) {
127127
$readFile = $true
128128

129129
$changelogPath = Get-ChildItem -Path $sourcePath -Recurse -Filter changelog.md | Select-Object -First 1
130-
Write-Verbose "Changelog Found: $changelogPath"
130+
Write-Verbose "Changelog Found: $($changelogPath.FullName)"
131+
Write-Verbose "Searching for: $versionName";
132+
131133
Get-Content -Path $changelogPath.FullName | ForEach-Object {
132134

133135
if($readFile) {
@@ -142,10 +144,14 @@ Function Get-ChangelogText ([string]$sourcePath, [string]$versionName) {
142144
[void]$sb.AppendLine($_)
143145
}
144146
} else {
145-
if(($_ -like "##*") -and ($_ -match $versionName)) {
146-
$saveLines = $true
147-
Write-Verbose "START at $_"
148-
}
147+
if($_ -like "##*") {
148+
Write-Verbose "Inspecting $_"
149+
150+
if ($_ -match $versionName) {
151+
$saveLines = $true
152+
Write-Verbose "START at $_"
153+
}
154+
}
149155
}
150156
}
151157

CHANGELOG.Base.md

Lines changed: 0 additions & 375 deletions
This file was deleted.

CHANGELOG.Logging.md

Lines changed: 0 additions & 102 deletions
This file was deleted.

0 commit comments

Comments
 (0)