Skip to content

Commit

Permalink
Releasing version 3.13.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 9f25544 commit 8d06d2b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,8 @@ These parameters will be the same for each Windows optional feature in the set.

### Unreleased

### 3.13.0.0

* Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
* Updated appveyor.yml to use the default image.
* Merged xPackage with in-box Package resource and added tests.
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: 3.12.{build}.0
version: 3.13.{build}.0
install:
- git clone https://github.com/PowerShell/DscResource.Tests
- ps: |
Expand Down Expand Up @@ -40,7 +40,7 @@ deploy_script:
# Creating project artifact
$stagingDirectory = (Resolve-Path ..).Path
$manifest = Join-Path $pwd "xPSDesiredStateConfiguration.psd1"
(Get-Content $manifest -Raw).Replace("3.12.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
(Get-Content $manifest -Raw).Replace("3.13.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
20 changes: 18 additions & 2 deletions xPSDesiredStateConfiguration.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
ModuleVersion = '3.12.0.0'
ModuleVersion = '3.13.0.0'

# ID used to uniquely identify this module
GUID = 'cc8dc021-fa5f-4f96-8ecf-dfd68a6d9d48'
Expand Down Expand Up @@ -52,7 +52,22 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = '* Removed localization for now so that resources can run on non-English systems.
ReleaseNotes = '* Converted appveyor.yml to install Pester from PSGallery instead of from Chocolatey.
* Updated appveyor.yml to use the default image.
* Merged xPackage with in-box Package resource and added tests.
* xPackage: Re-implemented parameters for installation check from registry key value.
* xGroup:
* Fixed Verbose output in Get-MembersAsPrincipals function.
* Fixed bug when credential parameter passed does not contain local or domain context.
* Fixed logic bug in MembersToInclude and MembersToExclude.
* Fixed bug when trying to include the built-in Administrator in Members.
* Fixed bug where Test-TargetResource would check for members when none specified.
* Fix bug in Test-TargetResourceOnFullSKU function when group being set to a single member.
* Fix bug in Set-TargetResourceOnFullSKU function when group being set to a single member.
* Fix bugs in Assert-GroupNameValid to throw correct exception.
* xService
* Updated xService resource to allow empty string for Description parameter.
* Merged xProcess with in-box Process resource and added tests.
'

Expand All @@ -64,3 +79,4 @@ PrivateData = @{




0 comments on commit 8d06d2b

Please sign in to comment.