Skip to content

Commit

Permalink
Releasing version 1.13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Katie Keim authored and Katie Keim committed Jun 30, 2016
1 parent 94027a5 commit 75dc01d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 38 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,8 @@ These parameters will be the same for each Windows optional feature in the set.

### Unreleased

### 1.13.0.0

* Removed localization for now so that resources can run on non-English systems.

### 3.11.0.0
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# environment configuration #
#---------------------------------#
os: WMF 5
version: 3.11.{build}.0
version: 1.13.{build}.0
install:
- git clone https://github.com/PowerShell/DscResource.Tests
- ps: Push-Location
Expand Down Expand Up @@ -55,7 +55,7 @@ deploy_script:
# Creating project artifact
$stagingDirectory = (Resolve-Path ..).Path
$manifest = Join-Path $pwd "xPSDesiredStateConfiguration.psd1"
(Get-Content $manifest -Raw).Replace("3.11.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
(Get-Content $manifest -Raw).Replace("1.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
39 changes: 3 additions & 36 deletions xPSDesiredStateConfiguration.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
# Version number of this module.
ModuleVersion = '3.11.0.0'
ModuleVersion = '1.13.0.0'

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

# ReleaseNotes of this module
ReleaseNotes = '* xRemoteFile: Added parameters:
- TimeoutSec
- Proxy
- ProxyCredential
Added unit tests.
Corrected Style Guidelines issues.
Added Localization support.
URI parameter supports File://.
Get-TargetResource returns URI parameter.
Fixed logging of error message reported when download fails.
Added new example Sample_xRemoteFileUsingProxy.ps1.
* Examples: Fixed missing newline at end of PullServerSetupTests.ps1.
* xFileUpload: Added PSSA rule suppression attribute.
* xPackageResource: Removed hardcoded ComputerName "localhost" parameter from Get-WMIObject to eliminate PSSA rule violation. The parameter is not required.
* Added .gitignore to prevent DSCResource.Tests from being commited to repo.
* Updated AppVeyor.yml to use WMF 5 build OS so that latest test methods work.
* Updated xWebService resource to not deploy Devices.mdb if esent provider is used
* Fixed $script:netsh parameter initialization in xWebService resource that was causing CIM exception when EnableFirewall flag was specified.
* xService:
- Fixed a bug where, despite no state specified in the config, the resource test returns false if the service is not running
- Fixed bug in which Automatice StartupType did not match the "Auto" StartMode in Test-TargetResource.
* xPackage: Fixes bug where CreateCheckRegValue was not being removed when uninstalling packages
* Replaced New-NetFirewallRule cmdlets with netsh as this cmdlet is not available by default on some downlevel OS such as Windows 2012 R2 Core.
* Added the xEnvironment resource
* Added the xWindowsFeature resource
* Added the xScript resource
* Added the xUser resource
* Added the xGroupSet resource
* Added the xProcessSet resource
* Added the xServiceSet resource
* Added the xWindowsFeatureSet resource
* Added the xWindowsOptionalFeatureSet resource
* Merged the in-box Service resource with xService and added tests for xService
* Merged the in-box Archive resource with xArchive and added tests for xArchive
* Merged the in-box Group resource with xGroup and added tests for xGroup
ReleaseNotes = '* Removed localization for now so that resources can run on non-English systems.
'

Expand All @@ -97,3 +63,4 @@ PrivateData = @{




0 comments on commit 75dc01d

Please sign in to comment.