Skip to content

Commit

Permalink
Releasing version 1.5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Katie Keim authored and Katie Keim committed Aug 10, 2016
1 parent 440a2aa commit f806a51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -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: |
Expand Down Expand Up @@ -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)
Expand Down
7 changes: 5 additions & 2 deletions xFailOverCluster.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@{


ModuleVersion = '1.4.0.0'
ModuleVersion = '1.5.0.0'
GUID = '026e7fd8-06dd-41bc-b373-59366ab18679'

Author = 'Microsoft Corporation'
Expand All @@ -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
'

Expand All @@ -39,3 +41,4 @@ PrivateData = @{
} # End of PrivateData hashtable
}


0 comments on commit f806a51

Please sign in to comment.