Skip to content

Commit 40f1f86

Browse files
committed
1.0.0
1 parent ec3331e commit 40f1f86

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Trolley's JavaScript SDK (written in TypeScript) - For more information about th
66

77
## Installation
88

9-
npm install --save paymentrails
9+
npm install --save trolley
1010

1111
## Getting Started
1212

@@ -17,7 +17,7 @@ calls.
1717

1818
```js
1919
// A simple application using the Trolley/Payment Rails SDK
20-
const trolley = require('paymentrails');
20+
const trolley = require('trolley');
2121

2222
const client = trolley.connect({
2323
key: "YOUR-API-KEY",

lib/Client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ValidationError = Errors.ValidationError;
1010
* @hidden
1111
*/
1212

13-
const CURRENT_CLIENT_VERSION = "0.11.1";
13+
const CURRENT_CLIENT_VERSION = "1.0.0";
1414
const DEFAULT_HEADERS = {
1515
"Content-Type": "application/json",
1616
"Trolley-Source": `javascript-sdk_${CURRENT_CLIENT_VERSION}`,

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "paymentrails",
3-
"version": "0.11.1",
2+
"name": "trolley",
3+
"version": "1.0.0",
44
"description": "",
55
"main": "./dist/index",
66
"types": "./dist/index",

0 commit comments

Comments
 (0)