File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,8 +75,11 @@ xScheduledTask has the following properties:
7575## Versions
7676
7777### Unreleased
78+
79+ ### 1.8.0.0
7880* Converted AppVeyor.yml to pull Pester from PSGallery instead of Chocolatey.
7981* Changed AppVeyor.yml to use default image
82+ * xScheduledTask: Fixed bug with different OS versions returning repeat interval differently
8083
8184### 1.7.0.0
8285* Added support for enabling or disabling scheduled tasks
Original file line number Diff line number Diff line change 11# ---------------------------------#
22# environment configuration #
33# ---------------------------------#
4- version : 1.7 .{build}.0
4+ version : 1.8 .{build}.0
55install :
66 - git clone https://github.com/PowerShell/DscResource.Tests
77 - ps : |
@@ -40,7 +40,7 @@ deploy_script:
4040 # Creating project artifact
4141 $stagingDirectory = (Resolve-Path ..).Path
4242 $manifest = Join-Path $pwd "xComputerManagement.psd1"
43- (Get-Content $manifest -Raw).Replace("1.7 .0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
43+ (Get-Content $manifest -Raw).Replace("1.8 .0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
4444 $zipFilePath = Join-Path $stagingDirectory "$(Split-Path $pwd -Leaf).zip"
4545 Add-Type -assemblyname System.IO.Compression.FileSystem
4646 [System.IO.Compression.ZipFile]::CreateFromDirectory($pwd, $zipFilePath)
Original file line number Diff line number Diff line change 11@ {
22# Version number of this module.
3- ModuleVersion = ' 1.7 .0.0'
3+ ModuleVersion = ' 1.8 .0.0'
44
55# ID used to uniquely identify this module
66GUID = ' B5004952-489E-43EA-999C-F16A25355B89'
@@ -49,12 +49,14 @@ PrivateData = @{
4949 # IconUri = ''
5050
5151 # ReleaseNotes of this module
52- ReleaseNotes = ' * Added support for enabling or disabling scheduled tasks
53- * The Name parameter resolves to $env:COMPUTERNAME when the value is localhost
52+ ReleaseNotes = ' * Converted AppVeyor.yml to pull Pester from PSGallery instead of Chocolatey.
53+ * Changed AppVeyor.yml to use default image
54+ * xScheduledTask: Fixed bug with different OS versions returning repeat interval differently
5455'
5556
5657 } # End of PSData hashtable
5758
5859} # End of PrivateData hashtable
5960}
6061
62+
You can’t perform that action at this time.
0 commit comments