Skip to content

Commit

Permalink
Prepare for the v2.4.1-beta1 release of PSReadLine
Browse files Browse the repository at this point in the history
  • Loading branch information
daxian-dbw committed Feb 28, 2025
1 parent 49604e8 commit 9a9b4df
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 6 deletions.
28 changes: 28 additions & 0 deletions PSReadLine/Changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
### [2.4.1-beta1] - 2025-02-28

#### Code Changes

- Avoid querying for cursor position when it's not necessary (#4448)
- Handle buffer changes made by an event handler (#4442)
- Update `SelectCommandArgument` to properly handle POSIX style options for CLI commands (#4016)

#### Build Changes

- Update PSReadLine build to target `netstandard2.0` (#4584)
- Update documentation about the building of PSReadLine (#4286) (Thanks @sangafabrice!)
- Update `HelpInfoUri` for 7.5 (#4284)
- Update the release pipeline to remove `AzFeed` from display name (#4204)
- Update the OneBranch pipeline to keep it compliant and remove SBOM files from module (#4201)
- Make sure the `CodeQL` result from release pipeline gets uploaded (#4082)
- Add 'ob_restore_phase' for every task before the signing task to work around the signing issue (#4046)
- Change the NuGet feed to use the governed PowerShell feed (#4044)
- Update "Code of Conduct" and "Security Policy" (#4037)
- Disable SBOM, signing, and codeQL for the publish job (#3986)
- Update triage messages to use the latest stable version (#3985)
- Fix the release stage and update the changelog for v2.3.5 servicing release (#3984)
- Add the release stage to the pipeline and exclude test folders from Component Governance (#3982)
- Change back to 'external_distribution' for nupkg signing (#3977)
- Migrate PSReadLine release build pipeline to OneBranch (#3975)

[2.4.1-beta1]: https://github.com/PowerShell/PSReadLine/compare/v2.4.0-beta0...v2.4.1-beta1

### [2.4.0-beta0] - 2024-03-01

- Fix the null-reference exception when running `Debug-Job` on a thread job (#3957)
Expand Down
6 changes: 3 additions & 3 deletions PSReadLine/PSReadLine.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<RootNamespace>Microsoft.PowerShell.PSReadLine</RootNamespace>
<AssemblyName>Microsoft.PowerShell.PSReadLine</AssemblyName>
<NoWarn>$(NoWarn);CA1416</NoWarn>
<AssemblyVersion>2.4.0.0</AssemblyVersion>
<FileVersion>2.4.0</FileVersion>
<InformationalVersion>2.4.0-beta0</InformationalVersion>
<AssemblyVersion>2.4.1.0</AssemblyVersion>
<FileVersion>2.4.1</FileVersion>
<InformationalVersion>2.4.1-beta1</InformationalVersion>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<TargetFramework>netstandard2.0</TargetFramework>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
Expand Down
4 changes: 1 addition & 3 deletions PSReadLine/PSReadLine.psd1
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
@{
RootModule = 'PSReadLine.psm1'
NestedModules = @("Microsoft.PowerShell.PSReadLine.dll")
ModuleVersion = '2.4.0'
ModuleVersion = '2.4.1'
GUID = '5714753b-2afd-4492-a5fd-01d9e2cff8b5'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Copyright = '(c) Microsoft Corporation. All rights reserved.'
Description = 'Great command line editing in the PowerShell console host'
PowerShellVersion = '5.1'
DotNetFrameworkVersion = '4.6.2'
CLRVersion = '4.0.0'
FormatsToProcess = 'PSReadLine.format.ps1xml'
AliasesToExport = @()
FunctionsToExport = 'PSConsoleHostReadLine'
Expand Down

0 comments on commit 9a9b4df

Please sign in to comment.