Skip to content

Commit e71e500

Browse files
authored
Update version, changelog, and release notes for 0.9.0-rc1 release (#1391)
1 parent c57e8ba commit e71e500

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

.ci/ci_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ stages:
292292
BuildDropPath: $(signOutPath)
293293
Build_Repository_Uri: 'https://github.com/powershell/PSResourceGet'
294294
PackageName: 'Microsoft.PowerShell.PSResourceGet'
295-
PackageVersion: '0.5.24-beta24'
295+
PackageVersion: '0.9.0-rc1'
296296

297297
- pwsh: |
298298
$modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules'

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# CHANGELOG
2+
## 0.9.0-rc1
3+
4+
### Bug Fixes
5+
- Bug fix for using `Import-PSGetRepository` in Windows PowerShell (#1390)
6+
- Add error handling when searching for unlisted package versions (#1386)
7+
- Bug fix for deduplicating dependencies found from `Find-PSResource` (#1382)
8+
- Added support for non-PowerShell Gallery v2 repositories (#1380)
9+
- Bug fix for setting 'unknown' repository `APIVersion` (#1377)
10+
- Bug fix for saving a script with `-IncludeXML` parameter (#1375)
11+
- Bug fix for v3 server logic to properly parse inner @id element (#1374)
12+
- Bug fix to write warning instead of error when package is already installed (#1367)
13+
214
## 0.5.24-beta24
315

416
### Bug Fixes

src/Microsoft.PowerShell.PSResourceGet.psd1

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@{
55
RootModule = './Microsoft.PowerShell.PSResourceGet.dll'
66
NestedModules = @('./Microsoft.PowerShell.PSResourceGet.psm1')
7-
ModuleVersion = '0.5.24'
7+
ModuleVersion = '0.9.0'
88
CompatiblePSEditions = @('Core', 'Desktop')
99
GUID = 'e4e0bda1-0703-44a5-b70d-8fe704cd0643'
1010
Author = 'Microsoft Corporation'
@@ -45,7 +45,7 @@
4545
'udres')
4646
PrivateData = @{
4747
PSData = @{
48-
Prerelease = 'beta24'
48+
Prerelease = 'rc1'
4949
Tags = @('PackageManagement',
5050
'PSEdition_Desktop',
5151
'PSEdition_Core',
@@ -55,6 +55,18 @@
5555
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
5656
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
5757
ReleaseNotes = @'
58+
## 0.9.0-rc1
59+
60+
### Bug Fixes
61+
- Bug fix for using `Import-PSGetRepository` in Windows PowerShell (#1390)
62+
- Add error handling when searching for unlisted package versions (#1386)
63+
- Bug fix for deduplicating dependencies found from `Find-PSResource` (#1382)
64+
- Added support for non-PowerShell Gallery v2 repositories (#1380)
65+
- Bug fix for setting 'unknown' repository `APIVersion` (#1377)
66+
- Bug fix for saving a script with `-IncludeXML` parameter (#1375)
67+
- Bug fix for v3 server logic to properly parse inner @id element (#1374)
68+
- Bug fix to write warning instead of error when package is already installed (#1367)
69+
5870
## 0.5.24-beta24
5971
6072
### Bug Fixes

src/code/Microsoft.PowerShell.PSResourceGet.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<OutputType>Library</OutputType>
66
<RootNamespace>Microsoft.PowerShell.PSResourceGet</RootNamespace>
77
<AssemblyName>Microsoft.PowerShell.PSResourceGet</AssemblyName>
8-
<AssemblyVersion>0.5.24.0</AssemblyVersion>
9-
<FileVersion>0.5.24</FileVersion>
10-
<InformationalVersion>0.5.24</InformationalVersion>
8+
<AssemblyVersion>0.9.0.0</AssemblyVersion>
9+
<FileVersion>0.9.0</FileVersion>
10+
<InformationalVersion>0.9.0</InformationalVersion>
1111
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
1212
<LangVersion>9.0</LangVersion>
1313
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>

0 commit comments

Comments
 (0)