Skip to content
Merged
Show file tree
Hide file tree
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
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@

## [Unreleased]

## [2.1.2] - 2026-05-26

### Changed

- CI workflows migrated to PowerShellOrg reusable CI and release
workflows ([#457](https://github.com/PowerShellOrg/Plaster/pull/457))

### Fixed

- `AddContent` path separators normalised to forward slash on PS5.1 —

Check warning on line 19 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (normalised) Suggestions: (normalized, normalize, normalizer, normalcies, normalizes)
`Get-ChildItem -Name` returns backslash-separated paths on Windows
PS5.1, causing cross-platform inconsistencies in source/destination
attributes
- `Resolve-ModuleVersionString` returned `[System.Version]` on PS5.1
because `[System.Management.Automation.SemanticVersion]` is PS6+
only; adds a C# shim that defines the type at module load time
([#463](https://github.com/PowerShellOrg/Plaster/pull/463),
closes [#460](https://github.com/PowerShellOrg/Plaster/issues/460))
- `New-PlasterManifest` emitted `xmlns` inline on PS5.1 — .NET XML
serializer ignores `XmlWriterSettings.NewLineOnAttributes` for
namespace declarations; output is post-processed to normalise

Check warning on line 30 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (normalise) Suggestions: (normalize, normalcies, normalizes, normale, normals)
formatting
([#464](https://github.com/PowerShellOrg/Plaster/pull/464),
closes [#461](https://github.com/PowerShellOrg/Plaster/issues/461))
- `Get-Culture -Name` is PS6+ only; replaced with
`New-Object System.Globalization.CultureInfo` in tests
([#462](https://github.com/PowerShellOrg/Plaster/pull/462),
closes [#459](https://github.com/PowerShellOrg/Plaster/issues/459))

## [2.1.1] - 2026-05-25

### Fixed
Expand Down Expand Up @@ -169,7 +198,7 @@
Studio Code
- Fixed Test-PlasterManifest on non-Windows running .NET Core 2.0 which failed
with path using \ instead of /. Thanks to
[@elmundio87](https://github.com/elmundio87) via PR

Check warning on line 201 in CHANGELOG.md

View workflow job for this annotation

GitHub Actions / Continuous Integration / Run Linters

Unknown word (elmundio) Suggestions: (edmund, edmund's)
[#282](https://github.com/PowerShell/Plaster/pull/282)

## [1.0.1] 2016-12-16
Expand Down
2 changes: 1 addition & 1 deletion Plaster/Plaster.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
GUID = 'cfce3c5e-402f-412a-a83a-7b7ee9832ff4'

# Version number of this module.
ModuleVersion = '2.1.1'
ModuleVersion = '2.1.2'

# Supported PSEditions
CompatiblePSEditions = @('Desktop', 'Core')
Expand Down
Loading