Skip to content

Commit

Permalink
Releasing version 1.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kwirkykat committed Sep 21, 2016
1 parent f29d567 commit 25d95a8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ Please refer to [this article](http://technet.microsoft.com/en-us/library/dd8832
## Versions

### Unreleased

### 1.2.0.0
* Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
* Added xFileSystemAccessRule resource

Expand Down Expand Up @@ -169,4 +171,4 @@ Configuration FullControlExample
}
}
}
```
```
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.1.{build}.0
version: 1.2.{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 "xSystemSecurity.psd1"
(Get-Content $manifest -Raw).Replace("1.1.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
(Get-Content $manifest -Raw).Replace("1.2.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
8 changes: 6 additions & 2 deletions xSystemSecurity.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@{

# Version number of this module.
ModuleVersion = '1.1.0.0'
ModuleVersion = '1.2.0.0'

# ID used to uniquely identify this module
GUID = 'e30107af-a22a-48fb-b7bc-7d2b98489ac5'
Expand Down Expand Up @@ -54,10 +54,14 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
# ReleaseNotes = ''
ReleaseNotes = '* Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
* Added xFileSystemAccessRule resource
'

} # End of PSData hashtable

} # End of PrivateData hashtable
}


0 comments on commit 25d95a8

Please sign in to comment.