From 163cb813355bd24fe577d7cd90554850caf64e47 Mon Sep 17 00:00:00 2001 From: Gabriel Adrian Samfira Date: Mon, 16 Dec 2024 14:03:10 +0200 Subject: [PATCH] Release version 0.4.9 Bump version to 0.4.9. Signed-off-by: Gabriel Adrian Samfira --- powershell-yaml.psd1 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/powershell-yaml.psd1 b/powershell-yaml.psd1 index 2475fe0..3831b41 100644 --- a/powershell-yaml.psd1 +++ b/powershell-yaml.psd1 @@ -25,12 +25,19 @@ RootModule = 'powershell-yaml.psm1' # Version number of this module. -ModuleVersion = '0.4.8' +ModuleVersion = '0.4.9' PrivateData = @{ PSData = @{ LicenseUri = 'https://github.com/cloudbase/powershell-yaml/blob/master/LICENSE' ProjectUri = 'https://github.com/cloudbase/powershell-yaml' + ReleaseNotes = @' +# 0.4.9 + +Changes in this version: +* Revert commit 7980c7c "Fix losing case sensitive keys" (https://github.com/cloudbase/powershell-yaml/pull/159) . This change added a breaking change which was not properly documented before release, breaking some applications. This change will be re-added in a later version. +* Unwrap PScustomObjects before serializing (https://github.com/cloudbase/powershell-yaml/pull/158) +'@ } }