Skip to content

Commit f3de2ba

Browse files
committed
Release. Bump version number
1 parent d2a027a commit f3de2ba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/_coverpage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Barchart Market Data SDK <small>JavaScript 6.3.0</small>
1+
# Barchart Market Data SDK <small>JavaScript 6.3.1</small>
22

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

example/browser/example.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ module.exports = (() => {
756756
// before the first invocation of pumpInboundProcessing could process the login
757757
// failure.
758758

759-
const loginFailed = __inboundMessages.length > 0 && __inboundMessages[0].indexOf('-') === 0;
759+
const loginFailed = __inboundMessages.length > 0 && __inboundMessages.some(m => m.indexOf('-') === 0);
760760
let messages = __inboundMessages;
761761
__inboundMessages = [];
762762
__marketMessages = [];
@@ -5420,7 +5420,7 @@ module.exports = (() => {
54205420
'use strict';
54215421

54225422
return {
5423-
version: '6.3.0'
5423+
version: '6.3.1'
54245424
};
54255425
})();
54265426

lib/meta.js

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

44
return {
5-
version: '6.3.0'
5+
version: '6.3.1'
66
};
77
})();

package.json

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

0 commit comments

Comments
 (0)