Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nahanil committed Oct 3, 2021
1 parent 05bf0f7 commit fde7d13
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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* |


Expand All @@ -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,
})
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit fde7d13

Please sign in to comment.