Skip to content

Commit 88ceaf4

Browse files
Katie KeimKatie Keim
authored andcommitted
Releasing version 1.8.0.0
1 parent 8ec8e4b commit 88ceaf4

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#---------------------------------#
22
# environment configuration #
33
#---------------------------------#
4-
version: 1.7.{build}.0
4+
version: 1.8.{build}.0
55
install:
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)

xComputerManagement.psd1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
66
GUID = '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+

0 commit comments

Comments
 (0)