Skip to content

Commit 643b3ef

Browse files
committed
Advance version to 1.2.4
1 parent c0f2018 commit 643b3ef

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ServiceNow
22

3-
[![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-80%25-yellow.svg)
3+
[![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-79%25-yellow.svg)
44

55
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.
66

@@ -44,7 +44,7 @@ Once you've done this, all the cmdlets will be at your disposal, you can see a f
4444
Set-ServiceNowAuth -url InstanceName.service-now.com -Credentials (Get-Credential)
4545
```
4646

47-
The URL should be the instance name portion of the FQDN for your instance. For if you browse to `https://yourinstance.service-now.com` the URL required for the module is `yourinstance.service-now.com`.
47+
The URL should be the instance name portion of the FQDN for your instance. If you browse to `https://yourinstance.service-now.com` the URL required for the module is `yourinstance.service-now.com`.
4848

4949
### Example - Retrieving an Incident Containing the Word 'PowerShell'
5050

@@ -76,7 +76,7 @@ $IncidentParams = @{Caller = "UserName"
7676
Description = "This incident was created from Powershell"
7777
CustomFields = @{u_service = "MyService"
7878
u_incident_type = "Request"}
79-
}
79+
}
8080
New-ServiceNowIncident @Params
8181
```
8282

ServiceNow/ServiceNow.psd1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'ServiceNow.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.2.3'
15+
ModuleVersion = '1.2.4'
1616

1717
# ID used to uniquely identify this module
1818
GUID = 'b90d67da-f8d0-4406-ad74-89d169cd0633'
@@ -105,3 +105,5 @@ PrivateData = @{
105105

106106

107107

108+
109+

0 commit comments

Comments
 (0)