diff --git a/README.md b/README.md index ab69e4b..f23614a 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ Please see the Examples section for more details. ### Unreleased +### 3.4.0.0 + * MSFT_xVMHyperV: Fixed bug causing Test-TargetResource to fail when VM had snapshots. * MSFT_xVMHyperV: Adds localization support. * MSFT_xVMSwitch: Fixes bug where virtual switches are duplicated when BandwidthReservationMode is not specified. diff --git a/appveyor.yml b/appveyor.yml index 20c4cc0..a88eee2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ #---------------------------------# # environment configuration # #---------------------------------# -version: 3.3.{build}.0 +version: 3.4.{build}.0 install: - cinst -y pester - git clone https://github.com/PowerShell/DscResource.Tests @@ -39,7 +39,7 @@ deploy_script: # Creating project artifact $stagingDirectory = (Resolve-Path ..).Path $manifest = Join-Path $pwd "xHyper-V.psd1" - (Get-Content $manifest -Raw).Replace("3.3.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest + (Get-Content $manifest -Raw).Replace("3.4.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest $zipFilePath = Join-Path $stagingDirectory "$(Split-Path $pwd -Leaf).zip" Add-Type -assemblyname System.IO.Compression.FileSystem [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFilePath) diff --git a/xHyper-V.psd1 b/xHyper-V.psd1 index b33d5e0..9d738e4 100644 --- a/xHyper-V.psd1 +++ b/xHyper-V.psd1 @@ -1,6 +1,6 @@ @{ # Version number of this module. -ModuleVersion = '3.3.0.0' +ModuleVersion = '3.4.0.0' # ID used to uniquely identify this module GUID = 'f5a5f169-7026-4053-932a-19a7c37b1ca5'