diff --git a/.ci/ci_release.yml b/.ci/ci_release.yml
index 8f1a739df..46a67f715 100644
--- a/.ci/ci_release.yml
+++ b/.ci/ci_release.yml
@@ -244,7 +244,7 @@ stages:
BuildDropPath: $(signOutPath)
Build_Repository_Uri: 'https://github.com/powershell/powershellget'
PackageName: 'PowerShellGet'
- PackageVersion: '3.0.14'
+ PackageVersion: '3.0.15'
- pwsh: |
$modulePath = Join-Path -Path $env:AGENT_TEMPDIRECTORY -ChildPath 'TempModules'
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 99ff88819..80a5829e8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
# CHANGELOG
+## 3.0.15-beta15
+
+### New Features
+- Implementation of New-ScriptFileInfo, Update-ScriptFileInfo, and Test-ScriptFileInfo cmdlets (#708)
+- Implementation of Update-ModuleManifest cmdlet (#677)
+- Implentation of Authenticode validation via -AuthenticodeCheck for Install-PSResource (#632)
+
+### Bug Fixes
+- Bug fix for installing modules with manifests that contain dynamic script blocks (#681)
+
## 3.0.14-beta14
### Bug Fixes
diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1
index 2b4953d39..ec1415ddb 100644
--- a/src/PowerShellGet.psd1
+++ b/src/PowerShellGet.psd1
@@ -3,7 +3,7 @@
@{
RootModule = './netstandard2.0/PowerShellGet.dll'
- ModuleVersion = '3.0.14'
+ ModuleVersion = '3.0.15'
GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404'
Author = 'Microsoft Corporation'
CompanyName = 'Microsoft Corporation'
@@ -34,7 +34,7 @@
AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo')
PrivateData = @{
PSData = @{
- Prerelease = 'beta14'
+ Prerelease = 'beta15'
Tags = @('PackageManagement',
'PSEdition_Desktop',
'PSEdition_Core',
@@ -44,6 +44,16 @@
ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955'
LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061'
ReleaseNotes = @'
+## 3.0.15-beta15
+
+### New Features
+- Implementation of New-ScriptFileInfo, Update-ScriptFileInfo, and Test-ScriptFileInfo cmdlets (#708)
+- Implementation of Update-ModuleManifest cmdlet (#677)
+- Implentation of Authenticode validation via -AuthenticodeCheck for Install-PSResource (#632)
+
+### Bug Fixes
+- Bug fix for installing modules with manifests that contain dynamic script blocks (#681)
+
## 3.0.14-beta14
### Bug Fixes
diff --git a/src/code/FindPSResource.cs b/src/code/FindPSResource.cs
index b99b520c5..6d01c9753 100644
--- a/src/code/FindPSResource.cs
+++ b/src/code/FindPSResource.cs
@@ -20,8 +20,7 @@ namespace Microsoft.PowerShell.PowerShellGet.Cmdlets
///
[Cmdlet(VerbsCommon.Find,
"PSResource",
- DefaultParameterSetName = ResourceNameParameterSet,
- SupportsShouldProcess = true)]
+ DefaultParameterSetName = ResourceNameParameterSet)]
[OutputType(typeof(PSResourceInfo), typeof(PSCommandResourceInfo))]
public sealed class FindPSResource : PSCmdlet
{
diff --git a/src/code/PowerShellGet.csproj b/src/code/PowerShellGet.csproj
index 68ada6965..85e5c80d2 100644
--- a/src/code/PowerShellGet.csproj
+++ b/src/code/PowerShellGet.csproj
@@ -5,9 +5,9 @@
Library
PowerShellGet
PowerShellGet
- 3.0.14.0
- 3.0.14
- 3.0.14
+ 3.0.15.0
+ 3.0.15
+ 3.0.15
netstandard2.0
8.0