Skip to content

Commit a82a157

Browse files
author
Travis CI
committed
1.39.61
[ci skip]
1 parent 24fd283 commit a82a157

File tree

13 files changed

+20
-20
lines changed

13 files changed

+20
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,13 @@ console.log (ccxt.exchanges) // print all available exchanges
226226

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

229-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].60/dist/ccxt.browser.js
230-
* unpkg: https://unpkg.com/[email protected].60/dist/ccxt.browser.js
229+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].61/dist/ccxt.browser.js
230+
* unpkg: https://unpkg.com/[email protected].61/dist/ccxt.browser.js
231231

232232
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.
233233

234234
```HTML
235-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].60/dist/ccxt.browser.js"></script>
235+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].61/dist/ccxt.browser.js"></script>
236236
```
237237

238238
Creates a global `ccxt` object:

ccxt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Exchange = require ('./js/base/Exchange')
3535
//-----------------------------------------------------------------------------
3636
// this is updated by vss.js when building
3737

38-
const version = '1.39.60'
38+
const version = '1.39.61'
3939

4040
Exchange.ccxtVersion = version
4141

dist/ccxt.browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const Exchange = require ('./js/base/Exchange')
4343
//-----------------------------------------------------------------------------
4444
// this is updated by vss.js when building
4545

46-
const version = '1.39.60'
46+
const version = '1.39.61'
4747

4848
Exchange.ccxtVersion = version
4949

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "1.39.60",
3+
"version": "1.39.61",
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/base/Exchange.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
use Elliptic\EdDSA;
3737
use BN\BN;
3838

39-
$version = '1.39.60';
39+
$version = '1.39.61';
4040

4141
// rounding mode
4242
const TRUNCATE = 0;
@@ -55,7 +55,7 @@
5555

5656
class Exchange {
5757

58-
const VERSION = '1.39.60';
58+
const VERSION = '1.39.61';
5959

6060
private static $base58_alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz';
6161
private static $base58_encoder = null;

python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,13 @@ console.log (ccxt.exchanges) // print all available exchanges
226226

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

229-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].60/dist/ccxt.browser.js
230-
* unpkg: https://unpkg.com/[email protected].60/dist/ccxt.browser.js
229+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].61/dist/ccxt.browser.js
230+
* unpkg: https://unpkg.com/[email protected].61/dist/ccxt.browser.js
231231

232232
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.
233233

234234
```HTML
235-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].60/dist/ccxt.browser.js"></script>
235+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].61/dist/ccxt.browser.js"></script>
236236
```
237237

238238
Creates a global `ccxt` object:

python/ccxt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

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

25-
__version__ = '1.39.60'
25+
__version__ = '1.39.61'
2626

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

python/ccxt/async_support/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

7-
__version__ = '1.39.60'
7+
__version__ = '1.39.61'
88

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

python/ccxt/async_support/base/exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
__version__ = '1.39.60'
5+
__version__ = '1.39.61'
66

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

0 commit comments

Comments
 (0)