Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version 0.4.9 #162

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion powershell-yaml.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
'@
}
}

Expand Down