From 9e7b1fe5249588a3814ae8f8e8ac3a96df48210c Mon Sep 17 00:00:00 2001 From: Dongbo Wang Date: Wed, 3 May 2023 15:19:11 -0700 Subject: [PATCH] Prepare for the v2.3.1-beta1 release of PSReadLine (#3672) --- PSReadLine/Changes.txt | 15 +++++++++++++++ PSReadLine/PSReadLine.csproj | 6 +++--- PSReadLine/PSReadLine.psd1 | 2 +- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/PSReadLine/Changes.txt b/PSReadLine/Changes.txt index a00ad4578..27ccd6f6e 100644 --- a/PSReadLine/Changes.txt +++ b/PSReadLine/Changes.txt @@ -1,3 +1,18 @@ +### [2.3.1-beta1] - 2023-05-03 + +- Append reset VT sequence before rendering the ineline prediction (#3669) +- Support tooltip rendering in the prediction list view (#3667, #3671) +- Fix the broken doc link about `PowerShellGet` (#3657) (Thanks @vimode!) +- Add a sample for transforming Unicode code point to Unicode char by `Alt+x` (#3652) +- Avoid running `AddToHistoryHandler` on command lines loaded from history file (#3643) +- Force refreshing suggestion in the inline view when plugin is in use (#3644) +- Improve the sensitive history scrubbing to allow retrieving token from `az`, `gcloud`, and `kubectl` (#3641) +- Set the current location in `PredictionClient` when it's supported (#3639) +- Improve the default sensitive history scrubbing to allow safe property access (#3630) +- Make PSReadLine script hidden from debugger (#3629) + +[2.3.1-beta1]: https://github.com/PowerShell/PSReadLine/compare/v2.3.0-beta0...v2.3.1-beta1 + ### [2.3.0-beta0] - 2023-03-07 - Fix the menu completion to better handle the backspace key (#3574) diff --git a/PSReadLine/PSReadLine.csproj b/PSReadLine/PSReadLine.csproj index b88afdcd0..abe887a7a 100644 --- a/PSReadLine/PSReadLine.csproj +++ b/PSReadLine/PSReadLine.csproj @@ -5,9 +5,9 @@ Microsoft.PowerShell.PSReadLine Microsoft.PowerShell.PSReadLine2 $(NoWarn);CA1416 - 2.3.0.0 - 2.3.0 - 2.3.0-beta0 + 2.3.1.0 + 2.3.1 + 2.3.1-beta1 true net462;net6.0 true diff --git a/PSReadLine/PSReadLine.psd1 b/PSReadLine/PSReadLine.psd1 index f237efc2e..11299abf0 100644 --- a/PSReadLine/PSReadLine.psd1 +++ b/PSReadLine/PSReadLine.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'PSReadLine.psm1' NestedModules = @("Microsoft.PowerShell.PSReadLine2.dll") -ModuleVersion = '2.3.0' +ModuleVersion = '2.3.1' GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation'