Releasing version 2.1.0.0

This commit is contained in:
Katie Keim
2016-11-02 13:57:37 -07:00
parent 5958fa8bcf
commit ae4897cce9
3 changed files with 10 additions and 5 deletions
+5 -2
View File
@@ -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 = @{
}
+2
View File
@@ -225,6 +225,8 @@ None
### Unreleased
### 2.1.0.0
* Added WindowsFeature
### 2.0.0.0
+3 -3
View File
@@ -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)