Skip to content

Commit 900dc4c

Browse files
authored
Update ChangeLog and version for the 2.1.0-rc1 release (#1875)
1 parent 219ffa1 commit 900dc4c

File tree

2 files changed

+47
-1
lines changed

2 files changed

+47
-1
lines changed

PSReadLine/Changes.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
### Version 2.1.0-rc1
2+
3+
Pre-release notes:
4+
5+
Bug fixes:
6+
7+
* Add a key binding example: `ForwardCharAndAcceptNextSuggestionWord` (#1601)
8+
* Update `HelpInfoURI` for the PSReadLine module (#1589)
9+
* Fix incremental history saving when the history queue is full (#1602)
10+
* Make PSReadline to not force the background color during render (#1626) (Thanks @DHowett)
11+
* Update broken link in `README.md` (#1631) (Thanks @escape0707)
12+
* Fix `UpHat` (^) in vi-mode to move the cursor while yanking (#1656) (Thanks @springcomp)
13+
* vi-mode: Make `dd` deletes the logical line instead of the entire buffer (#1658) (Thanks @springcomp)
14+
* Improve the bug reporting message (#1698)
15+
* vi-mode: Add `dG` to delete to the end of multiline buffer (#1692) (Thanks @springcomp)
16+
* Remove duplicated code (#1700) (Thanks @springcomp)
17+
* vi-mode: `dd` now handles single line or multiline buffers consistently (#1694) (Thanks @springcomp)
18+
* vi-mode: Make `D` and `d$` delete to the end of the current logical line (#1695) (Thanks @springcomp)
19+
* vi-mode - Make `dj` delete the current and next `n` logical lines (#1697) (Thanks @springcomp)
20+
* Add comment in `SamplePSReadLineProfile.ps1` (#1712) (Thanks @sethvs)
21+
* Update the release build to satisfy the compliance requirement (#1702, #1714, #1726, #1731)
22+
* vi-mode: Use `dk` to delete the previous `n` logical lines and the current logical line in a multi-line buffer (#1737) (Thanks @springcomp)
23+
* vi-mode: Add `dgg` to delete from the beginning of the buffer to the current logical line (#1752) (Thanks @springcomp)
24+
* Use const strings for some often used `ANSI` control sequences (#1809)
25+
* Correct the descriptions of `SelectBackwardsLine` and `SelectLine` (#1857)
26+
* Fix the inline prediction to not leak color (#1861)
27+
* Rename `PredictionColor` to `InlinePredictionColor` (#1860)
28+
* Fix a rendering issue regarding cleanup of previous logical lines (#1865)
29+
* Allow `MaximumHistoryCount` to be set from user's profile (#1869)
30+
131
### Version 2.1.0-beta2
232

333
Pre-release notes:
@@ -23,6 +53,22 @@ Pre-release notes:
2353

2454
* Experimental support for fish-like suggestions in PSReadLine.
2555

56+
### Version 2.0.4
57+
58+
Bug fixes:
59+
60+
* Revert the update to the module `HelpInfoURI`
61+
* Fix the env-data script and write buffer info in case of exception (#1482)
62+
* Improve the bug reporting message (#1698)
63+
* Update build to use .NET 3.1 for compliance (#1702)
64+
65+
### Version 2.0.3
66+
67+
Bug fixes:
68+
69+
* Update `HelpInfoURI` for the PSReadLine module (#1589)
70+
* Make PSReadline to not force the background color during render (#1626) (Thanks @DHowett)
71+
2672
### Version 2.0.2
2773

2874
Bug fixes:

PSReadLine/PSReadLine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>Microsoft.PowerShell.PSReadLine2</AssemblyName>
77
<AssemblyVersion>2.1.0.0</AssemblyVersion>
88
<FileVersion>2.1.0</FileVersion>
9-
<InformationalVersion>2.1.0-beta2</InformationalVersion>
9+
<InformationalVersion>2.1.0-rc1</InformationalVersion>
1010
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
1111
<TargetFrameworks>net461;netcoreapp3.1</TargetFrameworks>
1212
<LangVersion>8.0</LangVersion>

0 commit comments

Comments
 (0)