Skip to content

Commit

Permalink
Releasing version 2.4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KarolKaczmarek committed Feb 2, 2016
1 parent 9424355 commit a6b4c04
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Build status](https://ci.appveyor.com/api/projects/status/1j95juvceu39ekm7/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xstorage/branch/master)
[![Build status](https://ci.appveyor.com/api/projects/status/1j95juvceu39ekm7/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xstorage/branch/master)


# xStorage

The **xStorage** module is a part of the Windows PowerShell Desired State Configuration (DSC) Resource Kit, which is a collection of DSC Resources.
?The **xStorage** module is a part of the Windows PowerShell Desired State Configuration (DSC) Resource Kit, which is a collection of DSC Resources.

This module contains the **xMountImage, xDisk, and xWaitForDisk** resources. The xMountImage resource can be used to mount or unmount an ISO/VHD disk image to the local file system, with simple declarative language. The xDisk and xWaitforDisk resources enable you to wait for a disk to become available and then initialize, format, and bring it online using PowerShell DSC.

Expand All @@ -27,7 +27,7 @@ To install **xstorage** module

- If you are using WMF4 / PowerShell Version 4: Unzip the content under $env:ProgramFilesWindowsPowerShellModules folder

- If you are using WMF5 Preview: From an elevated PowerShell session run ‘Install-Module xDiskImage’
- If you are using WMF5 Preview: From an elevated PowerShell session run ‘Install-Module xDiskImage’

To confirm installation

Expand Down Expand Up @@ -90,6 +90,8 @@ We reserve resource and module names without prefixes ("x" or "c") for future us

### Unreleased

### 2.4.0.0

### 2.3.0.0

* Added support for `AllocationUnitSize` in `xDisk`.
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: 2.3.{build}.0
version: 2.4.{build}.0
install:
- cinst -y pester
- git clone https://github.com/PowerShell/DscResource.Tests
Expand Down Expand Up @@ -39,7 +39,7 @@ deploy_script:
# Creating project artifact
$stagingDirectory = (Resolve-Path ..).Path
$manifest = Join-Path $pwd "xStorage.psd1"
(Get-Content $manifest -Raw).Replace("2.3.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
(Get-Content $manifest -Raw).Replace("2.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)
Expand Down
2 changes: 1 addition & 1 deletion xStorage.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '2.3.0.0'
ModuleVersion = '2.4.0.0'

# ID used to uniquely identify this module
GUID = '00d73ca1-58b5-46b7-ac1a-5bfcf5814faf'
Expand Down

0 comments on commit a6b4c04

Please sign in to comment.