Skip to content

Commit 4ec7084

Browse files
author
Travis CI
committed
1.62.64
[ci skip]
1 parent 95704e6 commit 4ec7084

15 files changed

+25
-25
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ console.log (ccxt.exchanges) // print all available exchanges
219219

220220
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
221221

222-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js
223-
* unpkg: https://unpkg.com/[email protected].63/dist/ccxt.browser.js
222+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js
223+
* unpkg: https://unpkg.com/[email protected].64/dist/ccxt.browser.js
224224

225225
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
226226

227227
```HTML
228-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js"></script>
228+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js"></script>
229229
```
230230

231231
Creates a global `ccxt` object:

ccxt.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Exchange = require ('./js/base/Exchange')
3636
//-----------------------------------------------------------------------------
3737
// this is updated by vss.js when building
3838

39-
const version = '1.62.63'
39+
const version = '1.62.64'
4040

4141
Exchange.ccxtVersion = version
4242

dist/ccxt.browser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const Exchange = require ('./js/base/Exchange')
4444
//-----------------------------------------------------------------------------
4545
// this is updated by vss.js when building
4646

47-
const version = '1.62.63'
47+
const version = '1.62.64'
4848

4949
Exchange.ccxtVersion = version
5050

doc/readme.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -1924,14 +1924,14 @@ JavaScript (for use with the ``<script>`` tag):
19241924
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
19251925

19261926

1927-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js
1928-
* unpkg: https://unpkg.com/[email protected].63/dist/ccxt.browser.js
1927+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js
1928+
* unpkg: https://unpkg.com/[email protected].64/dist/ccxt.browser.js
19291929

19301930
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
19311931

19321932
.. code-block:: HTML
19331933

1934-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js"></script>
1934+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js"></script>
19351935

19361936
Creates a global ``ccxt`` object:
19371937

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.62.63",
3+
"version": "1.62.64",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "dist/ccxt.browser.js",

php/Exchange.php

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/async/Exchange.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828

2929
include 'Throttle.php';
3030

31-
$version = '1.62.63';
31+
$version = '1.62.64';
3232

3333
class Exchange extends \ccxt\Exchange {
3434

35-
const VERSION = '1.62.63';
35+
const VERSION = '1.62.64';
3636

3737
public static $loop;
3838
public static $kernel;

python/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -219,13 +219,13 @@ console.log (ccxt.exchanges) // print all available exchanges
219219

220220
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
221221

222-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js
223-
* unpkg: https://unpkg.com/[email protected].63/dist/ccxt.browser.js
222+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js
223+
* unpkg: https://unpkg.com/[email protected].64/dist/ccxt.browser.js
224224

225225
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
226226

227227
```HTML
228-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js"></script>
228+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js"></script>
229229
```
230230

231231
Creates a global `ccxt` object:

python/ccxt/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ----------------------------------------------------------------------------
2424

25-
__version__ = '1.62.63'
25+
__version__ = '1.62.64'
2626

2727
# ----------------------------------------------------------------------------
2828

python/ccxt/async_support/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.62.63'
7+
__version__ = '1.62.64'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/async_support/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '1.62.63'
5+
__version__ = '1.62.64'
66

77
# -----------------------------------------------------------------------------
88

python/ccxt/base/exchange.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '1.62.63'
7+
__version__ = '1.62.64'
88

99
# -----------------------------------------------------------------------------
1010

python/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.62.63",
3+
"version": "1.62.64",
44
"description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges",
55
"main": "./ccxt.js",
66
"unpkg": "dist/ccxt.browser.js",

wiki/Install.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ console.log (ccxt.exchanges) // print all available exchanges
4040

4141
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
4242

43-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js
44-
* unpkg: https://unpkg.com/[email protected].63/dist/ccxt.browser.js
43+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js
44+
* unpkg: https://unpkg.com/[email protected].64/dist/ccxt.browser.js
4545

4646
You can obtain a live-updated version of the bundle by removing the version number from the URL (the `@a.b.c` thing) — however, we do not recommend to do that, as it may break your app eventually. Also, please keep in mind that we are not responsible for the correct operation of those CDN servers.
4747

4848
```HTML
49-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].63/dist/ccxt.browser.js"></script>
49+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].64/dist/ccxt.browser.js"></script>
5050
```
5151

5252
Creates a global `ccxt` object:

0 commit comments

Comments
 (0)