From d3609277bd488564fb88454053d22252cac4834e Mon Sep 17 00:00:00 2001 From: Travis CI Date: Sun, 25 Aug 2019 11:36:31 +0000 Subject: [PATCH] 1.18.1085 [ci skip] --- README.md | 6 +++--- ccxt.js | 2 +- dist/ccxt.browser.js | 2 +- doc/README.rst | 6 +++--- doc/install.rst | 6 +++--- package-lock.json | 2 +- package.json | 2 +- php/Exchange.php | 4 ++-- python/README.rst | 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 +- wiki/Install.md | 6 +++--- 14 files changed, 25 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index 73d86671c6e8a..47c74fe08bb96 100644 --- a/README.md +++ b/README.md @@ -221,13 +221,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.18.1084/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.18.1084/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.18.1085/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.18.1085/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 2092e436d819c..0a4b0024ca681 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.18.1084' +const version = '1.18.1085' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index 8a4a9bbea7eaf..184565d8fd10c 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.18.1084' +const version = '1.18.1085' Exchange.ccxtVersion = version diff --git a/doc/README.rst b/doc/README.rst index 42d8cf691ea71..a5c4a524af9b5 100644 --- a/doc/README.rst +++ b/doc/README.rst @@ -361,14 +361,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/doc/install.rst b/doc/install.rst index f2af67e4f4a2f..7e6467a607e07 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 acc4ba0117c4c..a5573cd525723 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.18.1084", + "version": "1.18.1085", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 579f5e5ae4494..147c7ed191b9d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.18.1084", + "version": "1.18.1085", "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 abf7d5c15e8eb..5fc289c9b5582 100644 --- a/php/Exchange.php +++ b/php/Exchange.php @@ -34,7 +34,7 @@ use kornrunner\Solidity; use Elliptic\EC; -$version = '1.18.1084'; +$version = '1.18.1085'; // rounding mode const TRUNCATE = 0; @@ -53,7 +53,7 @@ class Exchange { - const VERSION = '1.18.1084'; + const VERSION = '1.18.1085'; public static $eth_units = array ( 'wei' => '1', diff --git a/python/README.rst b/python/README.rst index 3fe6a0e81e764..3dd94790493ce 100644 --- a/python/README.rst +++ b/python/README.rst @@ -361,14 +361,14 @@ JavaScript (for use with the `` + Creates a global ``ccxt`` object: diff --git a/python/ccxt/__init__.py b/python/ccxt/__init__.py index 35224af799605..5bbc149e9ffe0 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.18.1084' +__version__ = '1.18.1085' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index 0bc4646fc361e..ea532f7ec06f3 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.18.1084' +__version__ = '1.18.1085' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index 848a42036111b..093cd23e3ab58 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.18.1084' +__version__ = '1.18.1085' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index cfce5290e9607..2b9821454533e 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.18.1084' +__version__ = '1.18.1085' # ----------------------------------------------------------------------------- diff --git a/wiki/Install.md b/wiki/Install.md index 9b91bc6e61bd9..7d8040554e9cc 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.18.1084/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.18.1084/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.18.1085/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.18.1085/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: