From fde7d13e980eca1da939baf846d7f7b06d478bc5 Mon Sep 17 00:00:00 2001 From: Jarrod Linahan Date: Sun, 3 Oct 2021 14:47:30 +1100 Subject: [PATCH] bump version --- README.md | 6 ++++-- package.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b839c2c..cc8f300 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Some methods have been 'fluffed out' to be more idiomatic in JS land, some are s - [ ] Should probably bring in eslint - [x] Coverage reporting -# [@nahanil/namesilo](https://github.com/texh/node-namesilo) *0.0.1* +# [@nahanil/namesilo](https://github.com/texh/node-namesilo) *0.0.3* > Interact with the NameSilo API @@ -36,6 +36,7 @@ You can pass either an API Key as the only parameter, or an object with more ver | options | `String` `Object` | (String) API Key | (Object) Configuration options |   | | options.apiKey | `Boolean` | API Key |   | | options.sandbox=false | `Boolean` | Use sandbox/testing API | *Optional* | +| options.batch=false | `Boolean` | Use Batch API | *Optional* | | options.logger | `Function` | | *Optional* | @@ -53,7 +54,8 @@ ns = new NameSilo(API_KEY) // With sandbox/test mode enabled ns = new NameSilo({ apiKey: API_KEY, - sandbox: true + sandbox: true, + batch: false, }) ``` diff --git a/package.json b/package.json index 834ff7e..f597c77 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nahanil/namesilo", - "version": "0.0.2", + "version": "0.0.3", "description": "Interact with the NameSilo API", "main": "index.js", "scripts": {