Skip to content

Commit bd8fe99

Browse files
committed
Merged PR 30587: Prepare for the v2.3.5 servicing release
Prepare for the v2.3.5 servicing release
1 parent 7256221 commit bd8fe99

File tree

7 files changed

+20
-9
lines changed

7 files changed

+20
-9
lines changed

MockPSConsole/MockPSConsole.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
21-
<PackageReference Include="Microsoft.PowerShell.SDK" version="7.2.13" />
21+
<PackageReference Include="Microsoft.PowerShell.SDK" version="7.2.18" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

PSReadLine.build.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ task LayoutModule BuildPolyfiller, BuildMainModule, {
160160
$version = $versionInfo.FileVersion
161161
$semVer = $versionInfo.ProductVersion
162162

163-
if ($semVer -match "(.*)-(.*)") {
163+
# dotnet build may add the Git commit hash to the 'ProductVersion' attribute with this format: +<commit-hash>.
164+
if ($semVer -match "(.*)-([^\+]*)(?:\+.*)?") {
164165
# Make sure versions match
165166
if ($matches[1] -ne $version) { throw "AssemblyFileVersion mismatch with AssemblyInformationalVersion" }
166167
$prerelease = $matches[2]

PSReadLine/Changes.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### [2.3.5] - 2024-04-02
2+
3+
- Add the release stage to the pipeline and exclude test folders from Component Governance (#3982)
4+
- Change back to 'external_distribution' for nupkg signing (#3977)
5+
- Migrate PSReadLine release build pipeline to OneBranch (#3975)
6+
- Fix the null-reference exception when running `Debug-Job` on a thread job (#3957)
7+
- Update build script to always include the `ProjectUri` info (#3821)
8+
9+
[2.3.5]: https://github.com/PowerShell/PSReadLine/compare/v2.3.4...v2.3.5
10+
111
### [2.3.4] - 2023-10-02
212

313
- Choose the inline prediction color based on the environment (#3808)

PSReadLine/PSReadLine.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<RootNamespace>Microsoft.PowerShell.PSReadLine</RootNamespace>
66
<AssemblyName>Microsoft.PowerShell.PSReadLine2</AssemblyName>
77
<NoWarn>$(NoWarn);CA1416</NoWarn>
8-
<AssemblyVersion>2.3.4.0</AssemblyVersion>
9-
<FileVersion>2.3.4</FileVersion>
10-
<InformationalVersion>2.3.4</InformationalVersion>
8+
<AssemblyVersion>2.3.5.0</AssemblyVersion>
9+
<FileVersion>2.3.5</FileVersion>
10+
<InformationalVersion>2.3.5</InformationalVersion>
1111
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
1212
<TargetFrameworks>net462;net6.0</TargetFrameworks>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
@@ -22,7 +22,7 @@
2222
</ItemGroup>
2323

2424
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
25-
<PackageReference Include="System.Management.Automation" Version="7.2.13" />
25+
<PackageReference Include="System.Management.Automation" Version="7.2.18" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

PSReadLine/PSReadLine.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
RootModule = 'PSReadLine.psm1'
33
NestedModules = @("Microsoft.PowerShell.PSReadLine2.dll")
4-
ModuleVersion = '2.3.4'
4+
ModuleVersion = '2.3.5'
55
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

Polyfill/Polyfill.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313

1414
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
15-
<PackageReference Include="System.Management.Automation" Version="7.2.13" />
15+
<PackageReference Include="System.Management.Automation" Version="7.2.18" />
1616
</ItemGroup>
1717

1818
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">

test/PSReadLine.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</ItemGroup>
2525

2626
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
27-
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.13" />
27+
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.2.18" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

0 commit comments

Comments
 (0)