diff --git a/README.md b/README.md index b261b68db789..f0375e181114 100644 --- a/README.md +++ b/README.md @@ -226,13 +226,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.34.16/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.34.16/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.34.17/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.34.17/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 825f1b1ddbcd..1ef42c0b89f4 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.34.16' +const version = '1.34.17' Exchange.ccxtVersion = version diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js index d8c520bc8346..db92a508fd48 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.34.16' +const version = '1.34.17' Exchange.ccxtVersion = version diff --git a/package-lock.json b/package-lock.json index 9c3197c1eb9e..2998e7460acd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.34.16", + "version": "1.34.17", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3f0a2ecf39fc..f0c1e50e7a9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.34.16", + "version": "1.34.17", "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 dfeeec7150f4..614a53668726 100644 --- a/php/base/Exchange.php +++ b/php/base/Exchange.php @@ -36,7 +36,7 @@ use Elliptic\EdDSA; use BN\BN; -$version = '1.34.16'; +$version = '1.34.17'; // rounding mode const TRUNCATE = 0; @@ -55,7 +55,7 @@ class Exchange { - const VERSION = '1.34.16'; + const VERSION = '1.34.17'; private static $base58_alphabet = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'; private static $base58_encoder = null; diff --git a/python/README.md b/python/README.md index b261b68db789..f0375e181114 100644 --- a/python/README.md +++ b/python/README.md @@ -226,13 +226,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.34.16/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.34.16/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.34.17/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.34.17/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 f59dd67fbf73..ca67ecf35d82 100644 --- a/python/ccxt/__init__.py +++ b/python/ccxt/__init__.py @@ -22,7 +22,7 @@ # ---------------------------------------------------------------------------- -__version__ = '1.34.16' +__version__ = '1.34.17' # ---------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py index 13021b3307ac..197fd16608aa 100644 --- a/python/ccxt/async_support/__init__.py +++ b/python/ccxt/async_support/__init__.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.34.16' +__version__ = '1.34.17' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py index 16783ac49b44..d71fd2c661cc 100644 --- a/python/ccxt/async_support/base/exchange.py +++ b/python/ccxt/async_support/base/exchange.py @@ -2,7 +2,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.34.16' +__version__ = '1.34.17' # ----------------------------------------------------------------------------- diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py index eb5544841b54..4def93599d6f 100644 --- a/python/ccxt/base/exchange.py +++ b/python/ccxt/base/exchange.py @@ -4,7 +4,7 @@ # ----------------------------------------------------------------------------- -__version__ = '1.34.16' +__version__ = '1.34.17' # ----------------------------------------------------------------------------- diff --git a/python/package.json b/python/package.json index 3f0a2ecf39fc..f0c1e50e7a9e 100644 --- a/python/package.json +++ b/python/package.json @@ -1,6 +1,6 @@ { "name": "ccxt", - "version": "1.34.16", + "version": "1.34.17", "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 1556b3aa7f09..d16fc3fca918 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.34.16/dist/ccxt.browser.js -* unpkg: https://unpkg.com/ccxt@1.34.16/dist/ccxt.browser.js +* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.34.17/dist/ccxt.browser.js +* unpkg: https://unpkg.com/ccxt@1.34.17/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: