Skip to content

Commit

Permalink
1.4.23
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Aug 19, 2017
1 parent 00a856f commit 7961b8a
Show file tree
Hide file tree
Showing 8 changed files with 301 additions and 301 deletions.
4 changes: 2 additions & 2 deletions build/ccxt.browser.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/ccxt.es5.js

Large diffs are not rendered by default.

582 changes: 291 additions & 291 deletions build/ccxt.php

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ccxt.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CryptoJS = require ('crypto-js')
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '1.4.22'
const version = '1.4.23'

//-----------------------------------------------------------------------------
// platform detection
Expand Down
2 changes: 1 addition & 1 deletion ccxt.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DDoSProtection extends NetworkError {}
class RequestTimeout extends NetworkError {}
class ExchangeNotAvailable extends NetworkError {}

$version = '1.4.22';
$version = '1.4.23';

$curl_errors = array (
0 => 'CURLE_OK',
Expand Down
2 changes: 1 addition & 1 deletion ccxt.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

#------------------------------------------------------------------------------

__version__ = '1.4.22'
__version__ = '1.4.23'

#------------------------------------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions ccxt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@

#------------------------------------------------------------------------------

__version__ = '1.4.22'
__version__ = '1.4.23'

#------------------------------------------------------------------------------

Expand Down Expand Up @@ -433,7 +433,7 @@ def url(path, params={}):

@staticmethod
def urlencode(params={}):
if type(params) is dict:
if (type(params) is dict) or isinstance(params, collections.OrderedDict):
return _urlencode.urlencode(params)
return params

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "1.4.22",
"version": "1.4.23",
"description": "A library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs",
"main": "build/ccxt.es5.js",
"unpkg": "build/ccxt.browser.js",
Expand Down

0 comments on commit 7961b8a

Please sign in to comment.