Skip to content

Commit

Permalink
Release. Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bryaningl3 committed Jul 5, 2022
1 parent 89d63bd commit e17dfd9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/_coverpage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Barchart Market Data SDK <small>JavaScript 5.25.0</small>
# Barchart Market Data SDK <small>JavaScript 5.25.1</small>

> Inject real-time market data into your JavaScript applications
Expand Down
8 changes: 5 additions & 3 deletions example/browser/example.js
Original file line number Diff line number Diff line change
Expand Up @@ -5177,8 +5177,10 @@ module.exports = (() => {
}

if (message.subrecord === '1') {
q.lastUpdate = message.time;
q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
if (message.time) {
q.lastUpdate = message.time;
q.lastUpdateUtc = _getUtcTimestamp(symbol, message.time);
}
}

_derivePriceChange(q);
Expand Down Expand Up @@ -6047,7 +6049,7 @@ module.exports = (() => {
'use strict';

return {
version: '5.25.0'
version: '5.25.1'
};
})();

Expand Down
2 changes: 1 addition & 1 deletion lib/meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module.exports = (() => {
'use strict';

return {
version: '5.25.0'
version: '5.25.1'
};
})();
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@barchart/marketdata-api-js",
"version": "5.25.0",
"version": "5.25.1",
"description": "SDK for streaming market data from Barchart.com",
"author": {
"name": "Eero Pikat",
Expand Down

0 comments on commit e17dfd9

Please sign in to comment.