Skip to content

Commit

Permalink
4.0.3
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Travis CI committed Jul 1, 2023
1 parent ebe8099 commit 04e863b
Show file tree
Hide file tree
Showing 20 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -210,13 +210,13 @@ console.log(version, Object.keys(exchanges));

All-in-one browser bundle (dependencies included), served from a CDN of your choice:

* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@3.1.60/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@3.1.60/dist/ccxt.browser.js
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@4.0.3/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
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.1.60/dist/ccxt.browser.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js"></script>
```

Creates a global `ccxt` object:
Expand Down
2 changes: 1 addition & 1 deletion dist/ccxt.browser.js
Expand Up @@ -263859,7 +263859,7 @@ SOFTWARE.

//-----------------------------------------------------------------------------
// this is updated by vss.js when building
const version = '3.1.60';
const version = '4.0.3';
_src_base_Exchange_js__WEBPACK_IMPORTED_MODULE_0__/* .Exchange.ccxtVersion */ .e.ccxtVersion = version;
//-----------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion dist/ccxt.browser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ccxt.bundle.cjs
Expand Up @@ -256072,7 +256072,7 @@ class woo extends woo$1 {

//-----------------------------------------------------------------------------
// this is updated by vss.js when building
const version = '3.1.60';
const version = '4.0.3';
Exchange$1r.ccxtVersion = version;
const exchanges = {
'ace': ace,
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/ccxt.js
Expand Up @@ -178,7 +178,7 @@ var woo$1 = require('./src/pro/woo.js');

//-----------------------------------------------------------------------------
// this is updated by vss.js when building
const version = '3.1.60';
const version = '4.0.3';
Exchange["default"].ccxtVersion = version;
const exchanges = {
'ace': ace,
Expand Down
2 changes: 1 addition & 1 deletion js/ccxt.d.ts
Expand Up @@ -4,7 +4,7 @@ import * as functions from './src/base/functions.js';
import * as errors from './src/base/errors.js';
import { Market, Trade, Fee, Ticker, OrderBook, Order, Transaction, Tickers, Currency, Balance, DepositAddress, WithdrawalResponse, DepositAddressResponse, OHLCV, Balances, PartialBalances, Dictionary, MinMax } from './src/base/types.js';
import { BaseError, ExchangeError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, MarginModeAlreadySet, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, NotSupported, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout, AuthenticationError, AddressPending } from './src/base/errors.js';
declare const version = "3.1.59";
declare const version = "4.0.2";
import ace from './src/ace.js';
import alpaca from './src/alpaca.js';
import ascendex from './src/ascendex.js';
Expand Down
2 changes: 1 addition & 1 deletion js/ccxt.js
Expand Up @@ -38,7 +38,7 @@ import * as errors from './src/base/errors.js';
import { BaseError, ExchangeError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, MarginModeAlreadySet, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, NotSupported, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout, AuthenticationError, AddressPending } from './src/base/errors.js';
//-----------------------------------------------------------------------------
// this is updated by vss.js when building
const version = '3.1.60';
const version = '4.0.3';
Exchange.ccxtVersion = version;
//-----------------------------------------------------------------------------
import ace from './src/ace.js';
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "4.0.2",
"version": "4.0.3",
"description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges",
"unpkg": "dist/ccxt.browser.js",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions php/Exchange.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions php/async/Exchange.php
Expand Up @@ -34,11 +34,11 @@

include 'Throttle.php';

$version = '3.1.60';
$version = '4.0.3';

class Exchange extends \ccxt\Exchange {

const VERSION = '3.1.60';
const VERSION = '4.0.3';

public $browser;
public $marketsLoading = null;
Expand Down
6 changes: 3 additions & 3 deletions python/README.md
Expand Up @@ -210,13 +210,13 @@ console.log(version, Object.keys(exchanges));

All-in-one browser bundle (dependencies included), served from a CDN of your choice:

* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@3.1.60/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@3.1.60/dist/ccxt.browser.js
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@4.0.3/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
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.1.60/dist/ccxt.browser.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js"></script>
```

Creates a global `ccxt` object:
Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/__init__.py
Expand Up @@ -22,7 +22,7 @@

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

__version__ = '3.1.60'
__version__ = '4.0.3'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async_support/__init__.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '3.1.60'
__version__ = '4.0.3'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/async_support/base/exchange.py
Expand Up @@ -2,7 +2,7 @@

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

__version__ = '3.1.60'
__version__ = '4.0.3'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/base/exchange.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '3.1.60'
__version__ = '4.0.3'

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

Expand Down
2 changes: 1 addition & 1 deletion python/ccxt/pro/__init__.py
Expand Up @@ -4,7 +4,7 @@

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

__version__ = '3.1.60'
__version__ = '4.0.3'

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

Expand Down
2 changes: 1 addition & 1 deletion python/package.json
@@ -1,6 +1,6 @@
{
"name": "ccxt",
"version": "3.1.60",
"version": "4.0.3",
"description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges",
"unpkg": "dist/ccxt.browser.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion ts/ccxt.ts
Expand Up @@ -40,7 +40,7 @@ import { BaseError, ExchangeError, PermissionDenied, AccountNotEnabled, AccountS
//-----------------------------------------------------------------------------
// this is updated by vss.js when building

const version = '3.1.60';
const version = '4.0.3';

(Exchange as any).ccxtVersion = version

Expand Down
6 changes: 3 additions & 3 deletions wiki/Install.md
Expand Up @@ -40,14 +40,14 @@ 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@3.1.60/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@3.1.60/dist/ccxt.browser.js
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js
* unpkg: https://unpkg.com/ccxt@4.0.3/dist/ccxt.browser.js
* ccxt: https://cdn.ccxt.com/latest/ccxt.min.js

You can obtain a live-updated version of the bundle by removing the version number from the URL (the `@a.b.c` thing) or the /latest/ on our cdn — 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
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.1.60/dist/ccxt.browser.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.0.3/dist/ccxt.browser.js"></script>
```

We also provide webpack minified and tree-shaken versions of the library starting from version 3.0.35 - Visit https://cdn.ccxt.com to browse the prebundled versions we distribute.
Expand Down

0 comments on commit 04e863b

Please sign in to comment.