Skip to content

Update pkg version change log and release notes for 3.0.17-beta17 release #783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 31, 2022
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
2 changes: 1 addition & 1 deletion .ci/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ stages:
BuildDropPath: $(signOutPath)
Build_Repository_Uri: 'https://github.com/powershell/powershellget'
PackageName: 'PowerShellGet'
PackageVersion: '3.0.16'
PackageVersion: '3.0.17'

- pwsh: |
$modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules'
Expand Down
26 changes: 24 additions & 2 deletions src/PowerShellGet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@{
RootModule = './netstandard2.0/PowerShellGet.dll'
ModuleVersion = '3.0.16'
ModuleVersion = '3.0.17'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
Expand Down Expand Up @@ -34,7 +34,7 @@
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
Prerelease = 'beta16'
Prerelease = 'beta17'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
Expand All @@ -44,6 +44,28 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
## 3.0.17-beta17

### New Features
- Add -TemporaryPath parameter to Install-PSResource, Save-PSResource, and Update-PSResource (#763)
- Add String and SecureString as credential types in PSCredentialInfo (#764)
- Add a warning for when the script installation path is not in Path variable (#750)
- Expand acceptable paths for Publish-PSResource (Module root directory, module manifest file, script file)(#704)
- Add -Force parameter to Register-PSResourceRepository cmdlet, to override an existing repository (#717)

### Bug Fixes
- Change casing of -IncludeXML to -IncludeXml (#739)
- Update priority range for PSResourceRepository to 0-100 (#741)
- Editorial pass on cmdlet reference (#743)
- Fix issue when PSScriptInfo has no empty lines (#744)
- Make ConfirmImpact low for Register-PSResourceRepository and Save-PSResource (#745)
- Fix -PassThru for Set-PSResourceRepository cmdlet to return all properties (#748)
- Rename -FilePath parameter to -Path for PSScriptFileInfo cmdlets (#765)
- Fix RequiredModules description and add Find example to docs (#769)
- Remove unneeded inheritance in InstallHelper.cs (#773)
- Make -Path a required parameter for Save-PSResource cmdlet (#780)
- Improve script validation for publishing and installing (#781)

## 3.0.16-beta16

### Bug Fixes
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.16.0</AssemblyVersion>
<FileVersion>3.0.16</FileVersion>
<InformationalVersion>3.0.16</InformationalVersion>
<AssemblyVersion>3.0.17.0</AssemblyVersion>
<FileVersion>3.0.17</FileVersion>
<InformationalVersion>3.0.17</InformationalVersion>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
Expand Down