From ae4897cce91061abb9d3c2bdb98d5ed5a3fb2f0a Mon Sep 17 00:00:00 2001 From: Katie Keim Date: Wed, 2 Nov 2016 13:57:37 -0700 Subject: [PATCH] Releasing version 2.1.0.0 --- PSDscResources.psd1 | 7 +++++-- README.md | 2 ++ appveyor.yml | 6 +++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/PSDscResources.psd1 b/PSDscResources.psd1 index 5e67a88..95fabab 100644 --- a/PSDscResources.psd1 +++ b/PSDscResources.psd1 @@ -4,7 +4,7 @@ # RootModule = '' # Version number of this module. -ModuleVersion = '2.0.0.0' +ModuleVersion = '2.1.0.0' # Supported PSEditions # CompatiblePSEditions = @() @@ -99,7 +99,9 @@ PrivateData = @{ # IconUri = '' # ReleaseNotes of this module - ReleaseNotes = 'Initial release of PSDscResources' + ReleaseNotes = '* Added WindowsFeature + +' } # End of PSData hashtable @@ -113,3 +115,4 @@ PrivateData = @{ } + diff --git a/README.md b/README.md index 51cc73b..7f31d67 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,8 @@ None ### Unreleased +### 2.1.0.0 + * Added WindowsFeature ### 2.0.0.0 diff --git a/appveyor.yml b/appveyor.yml index 5df0c25..83d8a4a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ -#---------------------------------# +#---------------------------------# # environment configuration # #---------------------------------# -version: 2.0.{build}.0 +version: 2.1.{build}.0 install: - git clone https://github.com/PowerShell/DscResource.Tests - ps: | @@ -40,7 +40,7 @@ deploy_script: # Creating project artifact $stagingDirectory = (Resolve-Path ..).Path $manifest = Join-Path $pwd "PSDscResources.psd1" - (Get-Content $manifest -Raw).Replace("2.0.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest + (Get-Content $manifest -Raw).Replace("2.1.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)