Skip to content

Commit e17dfd9

Browse files
committed
Release. Bump version number
1 parent 89d63bd commit e17dfd9

File tree

4 files changed

+8
-6
lines changed

4 files changed

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

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

example/browser/example.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5177,8 +5177,10 @@ module.exports = (() => {
51775177
}
51785178

51795179
if (message.subrecord === '1') {
5180-
q.lastUpdate = message.time;
5181-
q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
5180+
if (message.time) {
5181+
q.lastUpdate = message.time;
5182+
q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
5183+
}
51825184
}
51835185

51845186
_derivePriceChange(q);
@@ -6047,7 +6049,7 @@ module.exports = (() => {
60476049
'use strict';
60486050

60496051
return {
6050-
version: '5.25.0'
6052+
version: '5.25.1'
60516053
};
60526054
})();
60536055

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

0 commit comments

Comments
 (0)