Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# CHANGELOG

## 3.0.21-beta21

### New Features
- Move off of NuGet client APIs for local repositories (#1065)

### Bug Fixes
- Update properties on PSResourceInfo object (#1077)
- Rename PSScriptFileInfo and Get-PSResource cmdlets (#1071)
- fix ValueFromPipelineByPropertyName on Save, Install (#1070)
- add Help message for mandatory params across cmdlets (#1068)
- fix version range bug for Update-PSResource (#1067)
- Fix attribute bugfixes for Find and Install params (#1066)
- Correct Unexpected spelling of Unexpected (#1059)
- Resolve bug with Find-PSResource -Type Module not returning modules (#1050)

## 3.0.20-beta20

- Move off of NuGet client APIs and use direct REST API calls for remote repositories (#1023)
Expand Down
19 changes: 17 additions & 2 deletions src/PowerShellGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
RootModule = './net472/PowerShellGet.dll'
ModuleVersion = '3.0.20'
ModuleVersion = '3.0.21'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Expand Down Expand Up @@ -35,7 +35,7 @@
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
Prerelease = 'beta20'
Prerelease = 'beta21'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
Expand All @@ -45,6 +45,21 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
## 3.0.21-beta21

### New Features
- Move off of NuGet client APIs for local repositories (#1065)

### Bug Fixes
- Update properties on PSResourceInfo object (#1077)
- Rename PSScriptFileInfo and Get-PSResource cmdlets (#1071)
- fix ValueFromPipelineByPropertyName on Save, Install (#1070)
- add Help message for mandatory params across cmdlets (#1068)
- fix version range bug for Update-PSResource (#1067)
- Fix attribute bugfixes for Find and Install params (#1066)
- Correct Unexpected spelling of Unexpected (#1059)
- Resolve bug with Find-PSResource -Type Module not returning modules (#1050)

## 3.0.20-beta20

- Move off of NuGet client APIs and use direct REST API calls for remote repositories (#1023)
Expand Down
6 changes: 3 additions & 3 deletions src/code/PowerShellGet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<OutputType>Library</OutputType>
<RootNamespace>PowerShellGet</RootNamespace>
<AssemblyName>PowerShellGet</AssemblyName>
<AssemblyVersion>3.0.20.0</AssemblyVersion>
<FileVersion>3.0.20</FileVersion>
<InformationalVersion>3.0.20</InformationalVersion>
<AssemblyVersion>3.0.21.0</AssemblyVersion>
<FileVersion>3.0.21</FileVersion>
<InformationalVersion>3.0.21</InformationalVersion>
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
Expand Down