Skip to content

Commit 0aa5d4f

Browse files
committed
Release. Bump version number
1 parent 6f8fa87 commit 0aa5d4f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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.21.0</small>
1+
# Barchart Market Data SDK <small>JavaScript 5.21.1</small>
22

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

example/browser/example.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1524,7 +1524,7 @@ module.exports = (() => {
15241524
}
15251525
/**
15261526
* The third and final stage of message processing. The message is used to update
1527-
* market state and any interested consumers are notified.
1527+
* market state. Afterwards, any interested consumers are notified.
15281528
*
15291529
* @private
15301530
* @param {Object} message
@@ -1539,7 +1539,7 @@ module.exports = (() => {
15391539
broadcastEvent('marketDepth', message);
15401540
} else if (message.type === 'TIMESTAMP') {
15411541
broadcastEvent('timestamp', __marketState.getTimestamp());
1542-
} else {
1542+
} else if (message.type !== 'REFRESH_CUMULATIVE_VOLUME') {
15431543
broadcastEvent('marketUpdate', message);
15441544
}
15451545
} catch (e) {
@@ -1973,7 +1973,7 @@ module.exports = (() => {
19731973

19741974
/**
19751975
* Makes requests for "extended" profile data for a batch of symbols to an out-of-band
1976-
* web service (i.e. extras).
1976+
* web service (e.g. extras).
19771977
*
19781978
* @private
19791979
* @param {String[]} symbols
@@ -5421,7 +5421,7 @@ module.exports = (() => {
54215421
return this._internal.getBook(symbol);
54225422
}
54235423
/**
5424-
* Returns a promise for the {@link CumulativeVolume} volume instance matching the symbol
5424+
* Returns a promise for the {@link CumulativeVolume} instance matching the symbol
54255425
* provided. The promise will not be fulfilled until a **CumulativeVolume** subscription
54265426
* has been established (see {@link Enums.SubscriptionType}).
54275427
*
@@ -5964,7 +5964,7 @@ module.exports = (() => {
59645964
'use strict';
59655965

59665966
return {
5967-
version: '5.21.0'
5967+
version: '5.21.1'
59685968
};
59695969
})();
59705970

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.21.0'
5+
version: '5.21.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.21.0",
3+
"version": "5.21.1",
44
"description": "SDK for streaming market data from Barchart.com",
55
"author": {
66
"name": "Eero Pikat",

0 commit comments

Comments
 (0)