From 05d72eb0c00c0a3339558451deb1bd100acbde8c Mon Sep 17 00:00:00 2001 From: Travis CI Date: Mon, 26 Apr 2021 15:02:29 +0000 Subject: [PATCH] 1.48.86 [ci skip] --- README.md | 6 +++--- ccxt.js | 2 +- dist/ccxt.browser.js | 2 +- package-lock.json | 2 +- package.json | 2 +- php/Exchange.php | 4 ++-- php/async/Exchange.php | 4 ++-- python/README.md | 6 +++--- python/ccxt/__init__.py | 2 +- python/ccxt/async_support/__init__.py | 2 +- python/ccxt/async_support/base/exchange.py | 2 +- python/ccxt/base/exchange.py | 2 +- python/package.json | 2 +- wiki/Install.md | 6 +++--- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 59c3a89d5633..17781224e485 100644 --- a/README.md +++ b/README.md @@ -223,13 +223,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.48.85/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.48.85/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.48.86/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.48.86/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 88070201b678..2c1d7d993cf1 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.48.85' +const version = '1.48.86' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index 2a150b693087..ac650aa2ad4e 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.48.85' +const version = '1.48.86' Exchange.ccxtVersion = version diff --git a/package-lock.json b/package-lock.json index cf67bd63f2aa..1596f9226b56 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.48.85", + "version": "1.48.86", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 1986672157bf..1f5b08dc6526 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.48.85", + "version": "1.48.86", "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/Exchange.php b/php/Exchange.php index 3ee49dc0c38a..015af0d512b8 100644 --- a/php/Exchange.php +++ b/php/Exchange.php @@ -37,7 +37,7 @@ use BN\BN; use Exception; -$version = '1.48.85'; +$version = '1.48.86'; // rounding mode const TRUNCATE = 0; @@ -56,7 +56,7 @@ class Exchange { - const VERSION = '1.48.85'; + const VERSION = '1.48.86'; private static $base58_alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'; private static $base58_encoder = null; diff --git a/php/async/Exchange.php b/php/async/Exchange.php index 6300c45de144..0d4c55345610 100644 --- a/php/async/Exchange.php +++ b/php/async/Exchange.php @@ -28,11 +28,11 @@ include 'throttle.php'; -$version = '1.48.85'; +$version = '1.48.86'; class Exchange extends \ccxt\Exchange { - const VERSION = '1.48.85'; + const VERSION = '1.48.86'; public static $loop; public static $kernel; diff --git a/python/README.md b/python/README.md index 59c3a89d5633..17781224e485 100644 --- a/python/README.md +++ b/python/README.md @@ -223,13 +223,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.48.85/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.48.85/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.48.86/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.48.86/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/python/ccxt/__init__.py b/python/ccxt/__init__.py index 07b237b00ca3..f29aedeaf47a 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.48.85' +__version__ = '1.48.86' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index b4edd79a2e63..f6c37f5eb77b 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.48.85' +__version__ = '1.48.86' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index d749acb02f9c..03e0eda5aaac 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.48.85' +__version__ = '1.48.86' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index f84fa5e814ff..e2017084a0e5 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.48.85' +__version__ = '1.48.86' # ----------------------------------------------------------------------------- diff --git a/python/package.json b/python/package.json index 1986672157bf..1f5b08dc6526 100644 --- a/python/package.json +++ b/python/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.48.85", + "version": "1.48.86", "description": "A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges", "main": "./ccxt.js", "unpkg": "dist/ccxt.browser.js", diff --git a/wiki/Install.md b/wiki/Install.md index cd6c9db999cd..f3b7ef1b3195 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.48.85/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.48.85/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.48.86/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.48.86/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: