Skip to content

Commit 423cb47

Browse files
authored
Prepare for the v2.3.2-beta2 release of PSReadLine (#3783)
1 parent fbff10c commit 423cb47

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-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.0" />
21+
<PackageReference Include="Microsoft.PowerShell.SDK" version="7.2.13" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

PSReadLine/Changes.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### [2.3.2-beta2] - 2023-08-17
2+
3+
- Work around `InvalidOperationException` from Console API (#3755) (Thanks @jazzdelightsme!)
4+
- Add the `TerminateOrphanedConsoleApps` option on Windows to kill orphaned console-attached process that may mess up reading from Console input (#3764) (Thanks @jazzdelightsme!)
5+
- Fix bot to add `needs-triage` label to newly opened issue (#3772)
6+
- Update `actions/checkout` used in GitHub action to v3 (#3773)
7+
- Supports the text-object command `diw` in the VI edit mode (#2059) (Thanks @springcomp!)
8+
- Fix `NullReferenceException` when processing event subscribers (#3781)
9+
- Point to `F7History` in the comment of the `F7` key-binding sample (#3782)
10+
11+
[2.3.2-beta2]: https://github.com/PowerShell/PSReadLine/compare/v2.3.1-beta1...v2.3.2-beta2
12+
113
### [2.3.1-beta1] - 2023-05-03
214

315
- Append reset VT sequence before rendering the ineline prediction (#3669)

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.1.0</AssemblyVersion>
9-
<FileVersion>2.3.1</FileVersion>
10-
<InformationalVersion>2.3.1-beta1</InformationalVersion>
8+
<AssemblyVersion>2.3.2.0</AssemblyVersion>
9+
<FileVersion>2.3.2</FileVersion>
10+
<InformationalVersion>2.3.2-beta2</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.0" />
25+
<PackageReference Include="System.Management.Automation" Version="7.2.13" />
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.1'
4+
ModuleVersion = '2.3.2'
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.0" />
15+
<PackageReference Include="System.Management.Automation" Version="7.2.13" />
1616
</ItemGroup>
1717

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

test/PSReadLine.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
<PackageReference Include="System.Data.DataSetExtensions" version="4.5.0" />
2020
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" />
2121
<PackageReference Include="Microsoft.CSharp" version="4.7.0" />
22-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
22+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2323
<PackageReference Include="PowerShellStandard.Library" version="5.1.0" />
2424
</ItemGroup>
2525

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

3030
<ItemGroup>

0 commit comments

Comments
 (0)