Skip to content

Commit

Permalink
Release. Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor-Losev committed Nov 27, 2020
1 parent 849d2be commit 112b482
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barchart/portfolio-api-common",
"version": "1.9.0",
"version": "1.9.1",
"description": "Common code used by the Portfolio system",
"author": {
"name": "Bryan Ingle",
Expand Down
4 changes: 2 additions & 2 deletions test/SpecRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -5456,7 +5456,7 @@ module.exports = (() => {
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
.withField('date', DataType.DAY)
.withField('price', DataType.DECIMAL, true)
.withField('quantity', DataType.DECIMAL)
.withField('quantity', DataType.DECIMAL, true)
.withField('fee', DataType.DECIMAL, true)
.withField('force', DataType.BOOLEAN, true)
.withField('close', DataType.BOOLEAN, true)
Expand All @@ -5470,7 +5470,7 @@ module.exports = (() => {
.withField('type', DataType.forEnum(TransactionType, 'TransactionType'))
.withField('date', DataType.DAY)
.withField('price', DataType.DECIMAL)
.withField('quantity', DataType.DECIMAL)
.withField('quantity', DataType.DECIMAL, true)
.withField('fee', DataType.DECIMAL, true)
.withField('force', DataType.BOOLEAN, true)
.withField('close', DataType.BOOLEAN, true)
Expand Down

0 comments on commit 112b482

Please sign in to comment.