diff --git a/CHANGELOG.md b/CHANGELOG.md index 442607f3..48b1c95a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org). +## [v1.2.3](https://github.com/puppetlabs/ruby-pwsh/tree/v1.2.3) - 2025-03-18 + +[Full Changelog](https://github.com/puppetlabs/ruby-pwsh/compare/v1.2.2...v1.2.3) + +### Fixed + +- Handle string credentials [#369](https://github.com/puppetlabs/ruby-pwsh/pull/369) ([Clebam](https://github.com/Clebam)) +- (Bug): do not pass dsc_timeout as timeout parameter to DSC resource params [#366](https://github.com/puppetlabs/ruby-pwsh/pull/366) ([jordanbreen28](https://github.com/jordanbreen28)) +- Change [System.Environment]::SetEnvironmentVariable() to Set-ItemProperty [#365](https://github.com/puppetlabs/ruby-pwsh/pull/365) ([pkotov87](https://github.com/pkotov87)) +- double quote when passing env var values [#351](https://github.com/puppetlabs/ruby-pwsh/pull/351) ([garrettrowell](https://github.com/garrettrowell)) + ## [v1.2.2](https://github.com/puppetlabs/ruby-pwsh/tree/v1.2.2) - 2024-09-25 [Full Changelog](https://github.com/puppetlabs/ruby-pwsh/compare/v1.2.1...v1.2.2) diff --git a/lib/pwsh/version.rb b/lib/pwsh/version.rb index 37cf7bde..6690332d 100644 --- a/lib/pwsh/version.rb +++ b/lib/pwsh/version.rb @@ -2,5 +2,5 @@ module Pwsh # The version of the ruby-pwsh gem - VERSION = '1.2.2' + VERSION = '1.2.3' end diff --git a/metadata.json b/metadata.json index 5afafc73..f1a7c06a 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "puppetlabs-pwshlib", - "version": "1.2.2", + "version": "1.2.3", "author": "puppetlabs", "summary": "Provide library code for interoperating with PowerShell.", "license": "MIT",