Skip to content

Commit 45f68e0

Browse files
author
Travis CI
committed
1.23.94
[ci skip]
1 parent 6c82a1b commit 45f68e0

15 files changed

Lines changed: 26 additions & 26 deletions

File tree

README.md

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

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

224-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js
225-
* unpkg: https://unpkg.com/[email protected].93/dist/ccxt.browser.js
224+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js
225+
* unpkg: https://unpkg.com/[email protected].94/dist/ccxt.browser.js
226226

227227
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.
228228

229229
```HTML
230-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js"></script>
230+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js"></script>
231231
```
232232

233233
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.23.93'
38+
const version = '1.23.94'
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.23.93'
46+
const version = '1.23.94'
4747

4848
Exchange.ccxtVersion = version
4949

doc/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,14 +362,14 @@ JavaScript (for use with the ``<script>`` tag):
362362

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

365-
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js
366-
- unpkg: https://unpkg.com/[email protected].93/dist/ccxt.browser.js
365+
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js
366+
- unpkg: https://unpkg.com/[email protected].94/dist/ccxt.browser.js
367367

368368
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.
369369

370370
.. code:: html
371371

372-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js"></script>
372+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js"></script>
373373

374374
Creates a global ``ccxt`` object:
375375

doc/install.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ JavaScript (for use with the ``<script>`` tag):
6262

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

65-
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js
66-
- unpkg: https://unpkg.com/[email protected].93/dist/ccxt.browser.js
65+
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js
66+
- unpkg: https://unpkg.com/[email protected].94/dist/ccxt.browser.js
6767

6868
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.
6969

7070
.. code:: html
7171

72-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js"></script>
72+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js"></script>
7373

7474
Creates a global ``ccxt`` object:
7575

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.23.93",
3+
"version": "1.23.94",
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
@@ -35,7 +35,7 @@
3535
use Elliptic\EC;
3636
use BN\BN;
3737

38-
$version = '1.23.93';
38+
$version = '1.23.94';
3939

4040
// rounding mode
4141
const TRUNCATE = 0;
@@ -54,7 +54,7 @@
5454

5555
class Exchange {
5656

57-
const VERSION = '1.23.93';
57+
const VERSION = '1.23.94';
5858

5959
public static $exchanges = array(
6060
'_1btcxe',

python/README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,14 +362,14 @@ JavaScript (for use with the ``<script>`` tag):
362362

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

365-
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js
366-
- unpkg: https://unpkg.com/[email protected].93/dist/ccxt.browser.js
365+
- jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js
366+
- unpkg: https://unpkg.com/[email protected].94/dist/ccxt.browser.js
367367

368368
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.
369369

370370
.. code:: html
371371

372-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].93/dist/ccxt.browser.js"></script>
372+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].94/dist/ccxt.browser.js"></script>
373373

374374
Creates a global ``ccxt`` object:
375375

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.23.93'
25+
__version__ = '1.23.94'
2626

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

0 commit comments

Comments
 (0)