Skip to content

Commit bf72c36

Browse files
BryanBryan
authored andcommitted
Release. Bump version number
1 parent 0db7d40 commit bf72c36

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Barchart Market Data SDK <small>JavaScript 5.7.0</small>
1+
# Barchart Market Data SDK <small>JavaScript 5.7.1</small>
22

33
> Inject real-time market data into your JavaScript applications
44

example/browser/example.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5048,7 +5048,7 @@ module.exports = (() => {
50485048
'use strict';
50495049

50505050
return {
5051-
version: '5.7.0'
5051+
version: '5.7.1'
50525052
};
50535053
})();
50545054

@@ -8478,7 +8478,8 @@ module.exports = (() => {
84788478
},
84798479

84808480
/**
8481-
* Set difference operation (using strict equality).
8481+
* Set difference operation, returning any item in "a" that is not
8482+
* contained in "b" (using strict equality).
84828483
*
84838484
* @static
84848485
* @param {Array} a
@@ -8490,7 +8491,8 @@ module.exports = (() => {
84908491
},
84918492

84928493
/**
8493-
* Set difference operation, where the uniqueness is determined by a delegate.
8494+
* Set difference operation, returning any item in "a" that is not
8495+
* contained in "b" (where the uniqueness is determined by a delegate).
84948496
*
84958497
* @static
84968498
* @param {Array} a
@@ -10037,7 +10039,7 @@ module.exports = function transformData(data, headers, fns) {
1003710039
};
1003810040

1003910041
},{"./../utils":71}],61:[function(require,module,exports){
10040-
(function (process){
10042+
(function (process){(function (){
1004110043
'use strict';
1004210044

1004310045
var utils = require('./utils');
@@ -10136,7 +10138,7 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
1013610138

1013710139
module.exports = defaults;
1013810140

10139-
}).call(this,require('_process'))
10141+
}).call(this)}).call(this,require('_process'))
1014010142
},{"./adapters/http":47,"./adapters/xhr":47,"./helpers/normalizeHeaderName":68,"./utils":71,"_process":72}],62:[function(require,module,exports){
1014110143
'use strict';
1014210144

lib/meta.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = (() => {
22
'use strict';
33

44
return {
5-
version: '5.7.0'
5+
version: '5.7.1'
66
};
77
})();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@barchart/marketdata-api-js",
3-
"version": "5.7.0",
3+
"version": "5.7.1",
44
"description": "SDK for streaming market data from Barchart.com",
55
"author": {
66
"name": "Eero Pikat",

test/dist/barchart-marketdata-api-tests-5.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3683,7 +3683,8 @@ module.exports = (() => {
36833683
},
36843684

36853685
/**
3686-
* Set difference operation (using strict equality).
3686+
* Set difference operation, returning any item in "a" that is not
3687+
* contained in "b" (using strict equality).
36873688
*
36883689
* @static
36893690
* @param {Array} a
@@ -3695,7 +3696,8 @@ module.exports = (() => {
36953696
},
36963697

36973698
/**
3698-
* Set difference operation, where the uniqueness is determined by a delegate.
3699+
* Set difference operation, returning any item in "a" that is not
3700+
* contained in "b" (where the uniqueness is determined by a delegate).
36993701
*
37003702
* @static
37013703
* @param {Array} a

0 commit comments

Comments
 (0)