mirror of
https://github.com/PowerShell/PSDscResources
synced 2026-06-21 13:45:29 +00:00
Releasing version 2.1.0.0
This commit is contained in:
+5
-2
@@ -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 = @{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -225,6 +225,8 @@ None
|
||||
|
||||
### Unreleased
|
||||
|
||||
### 2.1.0.0
|
||||
|
||||
* Added WindowsFeature
|
||||
|
||||
### 2.0.0.0
|
||||
|
||||
+3
-3
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user