Skip to content

Commit c8a6627

Browse files
Katie KeimKatie Keim
authored andcommitted
Releasing version 1.6.0.0
1 parent 80bbd6e commit c8a6627

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ xScheduledTask has the following properties:
7272
## Versions
7373

7474
### Unreleased
75+
76+
### 1.6.0.0
7577
* Added the following resources:
7678
* MSFT_xOfflineDomainJoin resource to join computers to an AD Domain using an Offline Domain Join request file.
7779
* MSFT_xScheduledTask resource to control scheduled tasks on the local server

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.5.{build}.0
4+
version: 1.6.{build}.0
55
image: WMF 5
66
install:
77
- cinst -y pester
@@ -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.5.0.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
43+
(Get-Content $manifest -Raw).Replace("1.6.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: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@{
22
# Version number of this module.
3-
ModuleVersion = '1.5.0.0'
3+
ModuleVersion = '1.6.0.0'
44

55
# ID used to uniquely identify this module
66
GUID = 'B5004952-489E-43EA-999C-F16A25355B89'
@@ -49,7 +49,14 @@ PrivateData = @{
4949
# IconUri = ''
5050

5151
# ReleaseNotes of this module
52-
# ReleaseNotes = ''
52+
ReleaseNotes = '* Added the following resources:
53+
* MSFT_xOfflineDomainJoin resource to join computers to an AD Domain using an Offline Domain Join request file.
54+
* MSFT_xScheduledTask resource to control scheduled tasks on the local server
55+
* MSFT_xOfflineDomainJoin: Corrected localizedData.DomainAlreadyJoinedhMessage name.
56+
* xComputer: Changed credential generation code in tests to avoid triggering PSSA rule PSAvoidUsingConvertToSecureStringWithPlainText.
57+
Renamed unit test file to match the name of Resource file.
58+
59+
'
5360

5461
} # End of PSData hashtable
5562

0 commit comments

Comments
 (0)