Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zero-bites committed Apr 5, 2023
1 parent ec3331e commit 40f1f86
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Trolley's JavaScript SDK (written in TypeScript) - For more information about th

## Installation

npm install --save paymentrails
npm install --save trolley

## Getting Started

Expand All @@ -17,7 +17,7 @@ calls.

```js
// A simple application using the Trolley/Payment Rails SDK
const trolley = require('paymentrails');
const trolley = require('trolley');

const client = trolley.connect({
key: "YOUR-API-KEY",
Expand Down
2 changes: 1 addition & 1 deletion lib/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ValidationError = Errors.ValidationError;
* @hidden
*/

const CURRENT_CLIENT_VERSION = "0.11.1";
const CURRENT_CLIENT_VERSION = "1.0.0";
const DEFAULT_HEADERS = {
"Content-Type": "application/json",
"Trolley-Source": `javascript-sdk_${CURRENT_CLIENT_VERSION}`,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paymentrails",
"version": "0.11.1",
"name": "trolley",
"version": "1.0.0",
"description": "",
"main": "./dist/index",
"types": "./dist/index",
Expand Down

0 comments on commit 40f1f86

Please sign in to comment.