Skip to content

Commit 9e7b1fe

Browse files
authored
Prepare for the v2.3.1-beta1 release of PSReadLine (#3672)
1 parent 6b7c48a commit 9e7b1fe

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

PSReadLine/Changes.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
### [2.3.1-beta1] - 2023-05-03
2+
3+
- Append reset VT sequence before rendering the ineline prediction (#3669)
4+
- Support tooltip rendering in the prediction list view (#3667, #3671)
5+
- Fix the broken doc link about `PowerShellGet` (#3657) (Thanks @vimode!)
6+
- Add a sample for transforming Unicode code point to Unicode char by `Alt+x` (#3652)
7+
- Avoid running `AddToHistoryHandler` on command lines loaded from history file (#3643)
8+
- Force refreshing suggestion in the inline view when plugin is in use (#3644)
9+
- Improve the sensitive history scrubbing to allow retrieving token from `az`, `gcloud`, and `kubectl` (#3641)
10+
- Set the current location in `PredictionClient` when it's supported (#3639)
11+
- Improve the default sensitive history scrubbing to allow safe property access (#3630)
12+
- Make PSReadLine script hidden from debugger (#3629)
13+
14+
[2.3.1-beta1]: https://github.com/PowerShell/PSReadLine/compare/v2.3.0-beta0...v2.3.1-beta1
15+
116
### [2.3.0-beta0] - 2023-03-07
217

318
- Fix the menu completion to better handle the backspace key (#3574)

PSReadLine/PSReadLine.csproj

Lines changed: 3 additions & 3 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.0.0</AssemblyVersion>
9-
<FileVersion>2.3.0</FileVersion>
10-
<InformationalVersion>2.3.0-beta0</InformationalVersion>
8+
<AssemblyVersion>2.3.1.0</AssemblyVersion>
9+
<FileVersion>2.3.1</FileVersion>
10+
<InformationalVersion>2.3.1-beta1</InformationalVersion>
1111
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
1212
<TargetFrameworks>net462;net6.0</TargetFrameworks>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

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.0'
4+
ModuleVersion = '2.3.1'
55
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

0 commit comments

Comments
 (0)