diff --git a/README.md b/README.md
index 747863b51abb..1d5e86ad2c4a 100644
--- a/README.md
+++ b/README.md
@@ -224,13 +224,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.21.62/dist/ccxt.browser.js
-* unpkg: https://unpkg.com/ccxt@1.21.62/dist/ccxt.browser.js
+* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.63/dist/ccxt.browser.js
+* unpkg: https://unpkg.com/ccxt@1.21.63/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 055896c7601e..dacb39151205 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.21.62'
+const version = '1.21.63'
Exchange.ccxtVersion = version
diff --git a/dist/ccxt.browser.js b/dist/ccxt.browser.js
index 9cb528eee057..f71e7e0d1e11 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.21.62'
+const version = '1.21.63'
Exchange.ccxtVersion = version
diff --git a/doc/README.rst b/doc/README.rst
index 4c33a3bb4f78..48d40ee088ae 100644
--- a/doc/README.rst
+++ b/doc/README.rst
@@ -365,14 +365,14 @@ JavaScript (for use with the ``
+
Creates a global ``ccxt`` object:
diff --git a/doc/install.rst b/doc/install.rst
index 6051733dbeaf..34a6f1f5ae2b 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 12257d3d29e8..2bdccd6aa7da 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
- "version": "1.21.62",
+ "version": "1.21.63",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index a6488aedf89c..91ef2ee414ff 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
- "version": "1.21.62",
+ "version": "1.21.63",
"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 49c3dcab0c44..85ff30862b78 100644
--- a/php/base/Exchange.php
+++ b/php/base/Exchange.php
@@ -35,7 +35,7 @@
use Elliptic\EC;
use BN\BN;
-$version = '1.21.62';
+$version = '1.21.63';
// rounding mode
const TRUNCATE = 0;
@@ -54,7 +54,7 @@
class Exchange {
- const VERSION = '1.21.62';
+ const VERSION = '1.21.63';
public static $eth_units = array (
'wei' => '1',
diff --git a/python/README.rst b/python/README.rst
index 667d946f3758..4635f571a30b 100644
--- a/python/README.rst
+++ b/python/README.rst
@@ -365,14 +365,14 @@ JavaScript (for use with the ``
+
Creates a global ``ccxt`` object:
diff --git a/python/ccxt/__init__.py b/python/ccxt/__init__.py
index e5e8d38768ab..3954d3544538 100644
--- a/python/ccxt/__init__.py
+++ b/python/ccxt/__init__.py
@@ -22,7 +22,7 @@
# ----------------------------------------------------------------------------
-__version__ = '1.21.62'
+__version__ = '1.21.63'
# ----------------------------------------------------------------------------
diff --git a/python/ccxt/async_support/__init__.py b/python/ccxt/async_support/__init__.py
index 0466ea6a2ccf..0ea548833767 100644
--- a/python/ccxt/async_support/__init__.py
+++ b/python/ccxt/async_support/__init__.py
@@ -4,7 +4,7 @@
# -----------------------------------------------------------------------------
-__version__ = '1.21.62'
+__version__ = '1.21.63'
# -----------------------------------------------------------------------------
diff --git a/python/ccxt/async_support/base/exchange.py b/python/ccxt/async_support/base/exchange.py
index 8fd7f000b47a..0c990f7f1d35 100644
--- a/python/ccxt/async_support/base/exchange.py
+++ b/python/ccxt/async_support/base/exchange.py
@@ -2,7 +2,7 @@
# -----------------------------------------------------------------------------
-__version__ = '1.21.62'
+__version__ = '1.21.63'
# -----------------------------------------------------------------------------
diff --git a/python/ccxt/async_support/deribit.py b/python/ccxt/async_support/deribit.py
index a6f6d0d6d077..97833ec467ec 100644
--- a/python/ccxt/async_support/deribit.py
+++ b/python/ccxt/async_support/deribit.py
@@ -506,7 +506,7 @@ def parse_order(self, order, market=None):
# closed orders ------------------------------------------------------
# "tstamp": 1494492913288, # timestamp of the last order state change, documented, but may be missing in the actual response
# "modified": 1494492913289, # timestamp of the last db write operation, e.g. trade that doesn't change order status, documented, but may missing in the actual response
- # "adv": False # advanced type(false, or "usd" or "implv")
+ # "adv": False # advanced type(False, or "usd" or "implv")
# "trades": [], # not documented, injected from the outside of the parseOrder method into the order
# }
#
diff --git a/python/ccxt/base/exchange.py b/python/ccxt/base/exchange.py
index 324b85d1e560..895e059684af 100644
--- a/python/ccxt/base/exchange.py
+++ b/python/ccxt/base/exchange.py
@@ -4,7 +4,7 @@
# -----------------------------------------------------------------------------
-__version__ = '1.21.62'
+__version__ = '1.21.63'
# -----------------------------------------------------------------------------
diff --git a/python/ccxt/deribit.py b/python/ccxt/deribit.py
index 0d2c065af7df..6aff2f07d4f7 100644
--- a/python/ccxt/deribit.py
+++ b/python/ccxt/deribit.py
@@ -506,7 +506,7 @@ def parse_order(self, order, market=None):
# closed orders ------------------------------------------------------
# "tstamp": 1494492913288, # timestamp of the last order state change, documented, but may be missing in the actual response
# "modified": 1494492913289, # timestamp of the last db write operation, e.g. trade that doesn't change order status, documented, but may missing in the actual response
- # "adv": False # advanced type(false, or "usd" or "implv")
+ # "adv": False # advanced type(False, or "usd" or "implv")
# "trades": [], # not documented, injected from the outside of the parseOrder method into the order
# }
#
diff --git a/wiki/Install.md b/wiki/Install.md
index 7ac4f3686483..b0c80a5180ad 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.21.62/dist/ccxt.browser.js
-* unpkg: https://unpkg.com/ccxt@1.21.62/dist/ccxt.browser.js
+* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@1.21.63/dist/ccxt.browser.js
+* unpkg: https://unpkg.com/ccxt@1.21.63/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: