diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dfe080bc..2d79c4634 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ -### 3.0.0-beta10 -# Changelog +# CHANGELOG + +## 3.0.11-beta + +### Fixes + +### Changes + +### New Features + +- Find-PSResource +- Get-InstalledPSResource +- Get-PSResourceRepository +- Install-PSResource +- Publish-PSResource +- Register-PSResourceRepository +- Save-PSResource +- Set-PSResourceRepository +- Uninstall-PSResource +- Unregister-PSResourceRepository +- Update-PSResource + +### Notes +In this release, all cmdlets have been reviewed and implementation code refactored as needed. +Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases. +All tests have been reviewed and rewritten as needed. + +## 3.0.0-beta10 Bug Fixes * Bug fix for -ModuleName (used with -Version) in Find-PSResource returning incorrect resource type * Make repositories unique by name @@ -10,8 +36,7 @@ Bug Fixes * Ensure that not passing credentials does not throw an error if searching through multiple repositories * Remove attempt to remove loaded assemblies in psm1 -### 3.0.0-beta9 -# Changelog +## 3.0.0-beta9 New Features * Add DSCResources @@ -23,7 +48,7 @@ Bug Fixes * Add debugging statements for Get-PSResource and Install-PSResource * Fix bug related to paths in Uninstall-PSResource -### 3.0.0-beta8 +## 3.0.0-beta8 New Features * Add Type parameter to Install-PSResource * Add 'sudo' check for admin privileges in Unix in Install-PSResource @@ -34,7 +59,7 @@ Bug Fixes * Fix bug with Uninstall-PSResource sometimes not fully uninstalling * Change installed file paths to contain original version number instead of normalized version -### 3.0.0-beta7 +## 3.0.0-beta7 New Features * Completed functionality for Update-PSResource * Input-Object parameter for Install-PSResource @@ -48,21 +73,21 @@ Bug Fixes * Fix error getting thrown from paths with incorrectly formatted module versions * Fix module installation paths on Linux and MacOS -### 3.0.0-beta6 +## 3.0.0-beta6 New Feature * Implement functionality for Publish-PSResource -### 3.0.0-beta5 +## 3.0.0-beta5 * Note: 3.0.0-beta5 was skipped due to a packaging error -### 3.0.0-beta4 +## 3.0.0-beta4 New Feature * Implement -Repository '*' in Find-PSResource to search through all repositories instead of prioritized repository Bug Fix * Fix poor error handling for when repository is not accessible in Find-PSResource -### 3.0.0-beta3 +## 3.0.0-beta3 New Features * -RequiredResource parameter for Install-PSResource * -RequiredResourceFile parameter for Install-PSResource @@ -72,7 +97,7 @@ Bug Fixes * Resolved paths in Install-PSRsource and Save-PSResource * Resolved issues with capitalization (for unix systems) in Install-PSResource and Save-PSResource -### 3.0.0-beta2 +## 3.0.0-beta2 New Features * Progress bar and -Quiet parameter for Install-PSResource * -TrustRepository parameter for Install-PSResource @@ -82,6 +107,6 @@ New Features * -Reinstall parameter for Install-PSResource * Improved error handling -### 3.0.0-beta1 +## 3.0.0-beta1 BREAKING CHANGE * Preview version of PowerShellGet. Many features are not fully implemented yet. Please see https://devblogs.microsoft.com/powershell/powershellget-3-0-preview1 for more details. \ No newline at end of file diff --git a/src/PowerShellGet.psd1 b/src/PowerShellGet.psd1 index 1fa277441..3c1084c2c 100644 --- a/src/PowerShellGet.psd1 +++ b/src/PowerShellGet.psd1 @@ -1,6 +1,9 @@ +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. + @{ RootModule = './netstandard2.0/PowerShellGet.dll' - ModuleVersion = '3.0.0' + ModuleVersion = '3.0.11' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' @@ -27,7 +30,7 @@ AliasesToExport = @('inmo', 'fimo', 'upmo', 'pumo') PrivateData = @{ PSData = @{ - Prerelease = 'beta11' + Prerelease = 'beta' Tags = @('PackageManagement', 'PSEdition_Desktop', 'PSEdition_Core', @@ -37,7 +40,10 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' -### 3.0.0-beta11 + In this release, all cmdlets have been reviewed and implementation code refactored as needed. + Cmdlets have most of their functionality, but some parameters are not yet implemented and will be added in future releases. + All tests have been reviewed and rewritten as needed. +### 3.0.11 '@ } } diff --git a/src/code/PowerShellGet.csproj b/src/code/PowerShellGet.csproj index 63c5b0bd8..3e1e9c238 100644 --- a/src/code/PowerShellGet.csproj +++ b/src/code/PowerShellGet.csproj @@ -5,9 +5,9 @@ Library PowerShellGet PowerShellGet - 3.0.0.0 - 3.0.0 - 3.0.0 + 3.0.11.0 + 3.0.11 + 3.0.11 netstandard2.0 8.0