Skip to content

Commit 465da62

Browse files
authored
Prepare for the 2.3.0-beta0 release of PSReadLine (#3612)
1 parent 259d82e commit 465da62

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

PSReadLine/Changes.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
### [2.3.0-beta0] - 2023-03-07
2+
3+
- Fix the menu completion to better handle the backspace key (#3574)
4+
- Improve the list view to be scrollable and auto-adjust the list view height (#3583)
5+
- Use 'Visual Studio 2022' as the image for `appveyor` CI (#3594)
6+
- Fix some typos in this repository (#3547) (Thanks @spaette!)
7+
- De-duplicate prediction results with the history results (#3543)
8+
- Updating Fabric bot (#3540, #3576)
9+
- Change default color for inline prediction to `dim` (#3493)
10+
- Make tab completion show results whose `ListItemText` are different by case only (#3456) (Thanks @dkaszews!)
11+
- Fix to use the default member color for members (#3450)
12+
- Update the samples in README.md (#3440, #3424)
13+
- Place 'ViDGChord' in the right group (#3422)
14+
- Fix the description of `CapitalizeWord` (#3384)
15+
- Add support for upcasing, downcasing, and capitalizing word (#3365) (Thanks @3N4N!)
16+
- No list view prediction when the first line was scrolled up off the buffer (#3372)
17+
- Fix wrong cursor position in menu completion (#3373)
18+
- Fix `ViModeIndicator = Cursor` for Windows Terminal (#3374)
19+
- Fix parameter dynamic help when the help content is specified in ParameterAttribute (#3370)
20+
- Handle multi-line description for parameter help content (#3358)
21+
- Update module version in bot messages (#3361)
22+
23+
[2.3.0-beta0]: https://github.com/PowerShell/PSReadLine/compare/v2.2.6...v2.3.0-beta0
24+
125
### [2.2.6] - 2022-06-27
226

327
- Enable Predictive Intellisense by default (#3351)

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.2.6.0</AssemblyVersion>
9-
<FileVersion>2.2.6</FileVersion>
10-
<InformationalVersion>2.2.6</InformationalVersion>
8+
<AssemblyVersion>2.3.0.0</AssemblyVersion>
9+
<FileVersion>2.3.0</FileVersion>
10+
<InformationalVersion>2.3.0-beta0</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.2.6'
4+
ModuleVersion = '2.3.0'
55
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

0 commit comments

Comments
 (0)