File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ $PackageFilePatternExclusions = @(
66
66
67
67
$here = Split-Path - Parent $MyInvocation.MyCommand.Path
68
68
69
- $Version = " 0.1.2 "
69
+ $Version = " 0.1.5 "
70
70
$ModuleName = " PSServiceNow"
71
71
$PackageName = " $ModuleName -v$ ( $version ) .zip" ;
72
72
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ function Get-ServiceNowUserGroup{
89
89
90
90
# Set the default property set for the table view
91
91
$DefaultProperties = @ (' name' , ' email' , ' sys_id' )
92
- $DefaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(‘ DefaultDisplayPropertySet’ , [string []]$DefaultProperties )
92
+ $DefaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(' DefaultDisplayPropertySet' , [string []]$DefaultProperties )
93
93
$PSStandardMembers = [System.Management.Automation.PSMemberInfo []]@ ($DefaultDisplayPropertySet )
94
94
$Result | Add-Member MemberSet PSStandardMembers $PSStandardMembers
95
95
return $result
@@ -181,7 +181,7 @@ function Get-ServiceNowUser{
181
181
182
182
# Set the default property set for the table view
183
183
$DefaultProperties = @ (' name' , ' email' , ' sys_id' )
184
- $DefaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(‘ DefaultDisplayPropertySet’ , [string []]$DefaultProperties )
184
+ $DefaultDisplayPropertySet = New-Object System.Management.Automation.PSPropertySet(' DefaultDisplayPropertySet' , [string []]$DefaultProperties )
185
185
$PSStandardMembers = [System.Management.Automation.PSMemberInfo []]@ ($DefaultDisplayPropertySet )
186
186
$Result | Add-Member MemberSet PSStandardMembers $PSStandardMembers
187
187
return $result
Original file line number Diff line number Diff line change 12
12
RootModule = ' PSServiceNow.psm1'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 0.1.4 '
15
+ ModuleVersion = ' 0.1.5 '
16
16
17
17
# ID used to uniquely identify this module
18
18
GUID = ' b90d67da-f8d0-4406-ad74-89d169cd0633'
Original file line number Diff line number Diff line change 1
1
# PSServiceNow
2
- [ ![ GitHub release] ( https://img.shields.io/github/release/Sam-Martin/servicenow-powershell.svg )] ( https://github.com/Sam-Martin/servicenow-powershell/releases/latest ) [ ![ GitHub license] ( https://img.shields.io/github/license/Sam-Martin/servicenow-powershell.svg )] ( LICENSE ) ![ Test Coverage] ( https://img.shields.io/badge/coverage-87 %25-yellowgreen.svg )
2
+ [ ![ GitHub release] ( https://img.shields.io/github/release/Sam-Martin/servicenow-powershell.svg )] ( https://github.com/Sam-Martin/servicenow-powershell/releases/latest ) [ ![ GitHub license] ( https://img.shields.io/github/license/Sam-Martin/servicenow-powershell.svg )] ( LICENSE ) ![ Test Coverage] ( https://img.shields.io/badge/coverage-70 %25-yellowgreen.svg )
3
3
This PowerShell module provides a series of cmdlets for interacting with the [ ServiceNow REST API] ( http://wiki.servicenow.com/index.php?title=REST_API ) , performed by wrapping ` Invoke-RestMethod ` for the API calls.
4
4
** IMPORTANT:** Neither this module, nor its creator are in any way affiliated with ServiceNow.
5
5
You can’t perform that action at this time.
0 commit comments