From 0768fde09ff7d03a7f97f34ee0392fb6923e5adb Mon Sep 17 00:00:00 2001 From: Amber Erickson Date: Mon, 17 Jun 2019 10:04:44 -0700 Subject: [PATCH] Update version and changelog --- CHANGELOG.md | 10 ++++++++++ src/PowerShellGet/PowerShellGet.psd1 | 11 ++++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60be57c9..ce794f65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 2.1.5 + +New Features + +- Add and remove nuget based repositories as a nuget source when nuget client tool is installed (#498) + +Bug Fix + +- Fix for 'Failed to publish module' error thrown when publishing modules (#497) + ## 2.1.4 Bug Fix diff --git a/src/PowerShellGet/PowerShellGet.psd1 b/src/PowerShellGet/PowerShellGet.psd1 index 7e3fc989..9edd2177 100644 --- a/src/PowerShellGet/PowerShellGet.psd1 +++ b/src/PowerShellGet/PowerShellGet.psd1 @@ -1,6 +1,6 @@ @{ RootModule = 'PSModule.psm1' - ModuleVersion = '2.1.4' + ModuleVersion = '2.1.5' GUID = '1d73a601-4a6c-43c5-ba3f-619b18bbb404' Author = 'Microsoft Corporation' CompanyName = 'Microsoft Corporation' @@ -55,6 +55,15 @@ LicenseUri = 'https://go.microsoft.com/fwlink/?LinkId=829061' ReleaseNotes = @' +## 2.1.5 +New Features + +- Add and remove nuget based repositories as a nuget source when nuget client tool is installed (#498) + +Bug Fix + +- Fix for 'Failed to publish module' error thrown when publishing modules (#497) + ## 2.1.4 - Fixed hang while publishing some packages (#478)