Skip to content

Commit

Permalink
Bump NPM Version
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaskiewicz committed Aug 13, 2017
1 parent 4fb0016 commit 9743d45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const numberGenerator = new NumberGenerator(0);
FactoryMate also supports finite sequence generation by means of the `ProvidedValueGenerator` class. `ProvidedValueGenerator` is capable of returning values from an `Array` of numbers, strings, objects, etc. that was provided to the class upon instantiation:

``` typescript
let providedValueGenerator = new ProvidedValueGenerator(['up', 'left', 'right']);
const providedValueGenerator = new ProvidedValueGenerator(['up', 'left', 'right']);
const firstValue = providedValueGenerator.nextValue(); // 'up'
const secondValue = providedValueGenerator.nextValue(); // 'left'
const thirdValue = providedValueGenerator.nextValue(); // 'right'
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": "factory-mate",
"version": "1.1.0",
"version": "1.2.0",
"description": "TypeScript library for building domain objects",
"keywords": [
"unit testing",
Expand Down

0 comments on commit 9743d45

Please sign in to comment.