From 4402592f7543e6dae0c1e9c366c804f4b91abf1a Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Tue, 10 Dec 2019 18:57:58 -0800 Subject: [PATCH] 2.2.1 --- CHANGELOG.md | 19 +++++++++++++++++++ src/PowerShellGet/PowerShellGet.psd1 | 7 ++++++- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce794f65..638103ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +### 2.2.2 + +Bug Fix + +- Update casing of DscResources output + +### 2.2.1 + +Bug Fix + +- Allow DscResources to work on case sensitive platforms (#521) +- Fix for failure to return credential provider when using private feeds (#521) + +## 2.2 + +Bug Fix + +- Fix for prompting for credentials when passing in -Credential parameter when using Register-PSRepository + ## 2.1.5 New Features diff --git a/src/PowerShellGet/PowerShellGet.psd1 b/src/PowerShellGet/PowerShellGet.psd1 index 5ed0112a..ae2f16fa 100644 --- a/src/PowerShellGet/PowerShellGet.psd1 +++ b/src/PowerShellGet/PowerShellGet.psd1 @@ -1,6 +1,6 @@ @{ RootModule = 'PSModule.psm1' - ModuleVersion = '2.2.1' + ModuleVersion = '2.2.2' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' @@ -55,6 +55,11 @@ ProjectUri = 'https://go.microsoft.com/fwlink/?LinkId=828955' LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +### 2.2.2 +Bug Fix + +- Update casing of DscResources output + ### 2.2.1 Bug Fix