diff --git a/README.md b/README.md index cfff112eb10a..b7eefdc8176a 100644 --- a/README.md +++ b/README.md @@ -222,13 +222,13 @@ console.log (ccxt.exchanges) // print all available exchanges All-in-one browser bundle (dependencies included), served from a CDN of your choice: -* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.22.56/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.22.56/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.22.57/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.22.57/dist/ccxt.browser.js 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. ```HTML - + ``` Creates a global `ccxt` object: diff --git a/ccxt.js b/ccxt.js index 0bd79abbb682..3fee7385da2d 100644 --- a/ccxt.js +++ b/ccxt.js @@ -35,7 +35,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.22.56' +const version = '1.22.57' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index ee4e68e2e7d3..cd95de9d86cc 100644 --- a/dist/ccxt.browser.js +++ b/dist/ccxt.browser.js @@ -43,7 +43,7 @@ const Exchange = require ('./js/base/Exchange') //----------------------------------------------------------------------------- // this is updated by vss.js when building -const version = '1.22.56' +const version = '1.22.57' Exchange.ccxtVersion = version diff --git a/doc/README.rst b/doc/README.rst index 449cf155a8f3..52f65614603e 100644 --- a/doc/README.rst +++ b/doc/README.rst @@ -362,14 +362,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/doc/install.rst b/doc/install.rst index 82f9259960fd..97d25d16a9ce 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -62,14 +62,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/package-lock.json b/package-lock.json index 693fb53f8c22..7adaf85fba54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.22.56", + "version": "1.22.57", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 46e42869a96d..ad33452ceb5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.22.56", + "version": "1.22.57", "description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges", "main": "./ccxt.js", "unpkg": "dist/ccxt.browser.js", diff --git a/php/base/Exchange.php b/php/base/Exchange.php index 887384e03207..d9f4fbf19897 100644 --- a/php/base/Exchange.php +++ b/php/base/Exchange.php @@ -35,7 +35,7 @@ use Elliptic\EC; use BN\BN; -$version = '1.22.56'; +$version = '1.22.57'; // rounding mode const TRUNCATE = 0; @@ -54,7 +54,7 @@ class Exchange { - const VERSION = '1.22.56'; + const VERSION = '1.22.57'; public static $eth_units = array ( 'wei' => '1', diff --git a/python/README.rst b/python/README.rst index cd276eb37fc0..e74b79fb49a7 100644 --- a/python/README.rst +++ b/python/README.rst @@ -362,14 +362,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/python/ccxt/__init__.py b/python/ccxt/__init__.py index 3e7dac54cb3c..7bd8d18032df 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.22.56' +__version__ = '1.22.57' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index 0604572d8aaa..958874dc8b67 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.22.56' +__version__ = '1.22.57' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index d557364c0b96..d7b3b84a7045 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.22.56' +__version__ = '1.22.57' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index 60d25e02dcfa..a93fe22e0dbd 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.22.56' +__version__ = '1.22.57' # ----------------------------------------------------------------------------- diff --git a/wiki/Install.md b/wiki/Install.md index d78c97bd3c5b..50898ccaa045 100644 --- a/wiki/Install.md +++ b/wiki/Install.md @@ -58,13 +58,13 @@ If that does not help, please, follow here: https://github.com/nodejs/node-gyp#o All-in-one browser bundle (dependencies included), served from a CDN of your choice: -* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.22.56/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.22.56/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.22.57/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.22.57/dist/ccxt.browser.js 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. ```HTML - + ``` Creates a global `ccxt` object: