diff --git a/README.md b/README.md index 6e9bec1..fb23eac 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ Please check out common DSC Resources [contributing guidelines](https://github.c ### Unreleased +### 1.5.0.0 + * Added xClusterQuorum resource with options *NodeMajority*, *NodeAndDiskMajority*, *NodeAndFileShareMajority*, *DiskOnly* * Currently does not implement cloudwitness for Windows 2016. * Added xClusterDisk resource diff --git a/appveyor.yml b/appveyor.yml index 1a512c8..2595a6f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ #---------------------------------# # environment configuration # #---------------------------------# -version: 1.4.{build}.0 +version: 1.5.{build}.0 install: - git clone https://github.com/PowerShell/DscResource.Tests - ps: | @@ -38,7 +38,7 @@ deploy_script: # Creating project artifact $stagingDirectory = (Resolve-Path ..).Path $manifest = Join-Path $pwd "xFailOverCluster.psd1" - (Get-Content $manifest -Raw).Replace("1.4.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest + (Get-Content $manifest -Raw).Replace("1.5.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/xFailOverCluster.psd1 b/xFailOverCluster.psd1 index ec2d572..de85b15 100644 --- a/xFailOverCluster.psd1 +++ b/xFailOverCluster.psd1 @@ -3,7 +3,7 @@ @{ -ModuleVersion = '1.4.0.0' +ModuleVersion = '1.5.0.0' GUID = '026e7fd8-06dd-41bc-b373-59366ab18679' Author = 'Microsoft Corporation' @@ -30,7 +30,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = '* xClusterDisk: Fixed Test-TargetResource logic + ReleaseNotes = '* Added xClusterQuorum resource with options *NodeMajority*, *NodeAndDiskMajority*, *NodeAndFileShareMajority*, *DiskOnly* +* Currently does not implement cloudwitness for Windows 2016. +* Added xClusterDisk resource ' @@ -39,3 +41,4 @@ PrivateData = @{ } # End of PrivateData hashtable } +