Skip to content

Commit f16d1ba

Browse files
author
Travis CI
committed
4.4.25
[ci skip]
1 parent ec13bbc commit f16d1ba

19 files changed

+30
-30
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ console.log(version, Object.keys(exchanges));
222222

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

225-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js
226-
* unpkg: https://unpkg.com/[email protected].24/dist/ccxt.browser.min.js
225+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js
226+
* unpkg: https://unpkg.com/[email protected].25/dist/ccxt.browser.min.js
227227

228228
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.
229229

230230
```HTML
231-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js"></script>
231+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js"></script>
232232
```
233233

234234
Creates a global `ccxt` object:

cs/ccxt/base/Exchange.MetaData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace ccxt;
33
// file updated automatically by vss and export-exchanges
44
public partial class Exchange
55
{
6-
public static string ccxtVersion = "4.4.24";
6+
public static string ccxtVersion = "4.4.25";
77

88
public static List<string> exchanges = new List<string> { "ace", "alpaca", "ascendex", "bequant", "bigone", "binance", "binancecoinm", "binanceus", "binanceusdm", "bingx", "bit2c", "bitbank", "bitbns", "bitcoincom", "bitfinex", "bitfinex2", "bitflyer", "bitget", "bithumb", "bitmart", "bitmex", "bitopro", "bitpanda", "bitrue", "bitso", "bitstamp", "bitteam", "bitvavo", "bl3p", "blockchaincom", "blofin", "btcalpha", "btcbox", "btcmarkets", "btcturk", "bybit", "cex", "coinbase", "coinbaseadvanced", "coinbaseexchange", "coinbaseinternational", "coincatch", "coincheck", "coinex", "coinlist", "coinmate", "coinmetro", "coinone", "coinsph", "coinspot", "cryptocom", "currencycom", "delta", "deribit", "digifinex", "exmo", "fmfwio", "gate", "gateio", "gemini", "hashkey", "hitbtc", "hollaex", "htx", "huobi", "huobijp", "hyperliquid", "idex", "independentreserve", "indodax", "kraken", "krakenfutures", "kucoin", "kucoinfutures", "kuna", "latoken", "lbank", "luno", "lykke", "mercado", "mexc", "ndax", "novadax", "oceanex", "okcoin", "okx", "onetrading", "oxfun", "p2b", "paradex", "paymium", "phemex", "poloniex", "poloniexfutures", "probit", "timex", "tokocrypto", "tradeogre", "upbit", "vertex", "wavesexchange", "wazirx", "whitebit", "woo", "woofipro", "xt", "yobit", "zaif", "zonda" };
99
}

cs/ccxt/ccxt.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<PropertyGroup>
1111
<PackageId>ccxt</PackageId>
1212
<Authors>Carlos, Kroitor, Carlo</Authors>
13-
<PackageVersion>4.4.24</PackageVersion>
14-
<AssemblyVersion>4.4.24</AssemblyVersion>
15-
<FileVersion>4.4.24</FileVersion>
13+
<PackageVersion>4.4.25</PackageVersion>
14+
<AssemblyVersion>4.4.25</AssemblyVersion>
15+
<FileVersion>4.4.25</FileVersion>
1616
<PackageReadmeFile>README.md</PackageReadmeFile>
1717
<Description>Cryptocurrency trading API with support for more than 100 bitcoin/altcoin exchanges</Description>
1818
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>

dist/ccxt.browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386229,7 +386229,7 @@ SOFTWARE.
386229386229

386230386230
//-----------------------------------------------------------------------------
386231386231
// this is updated by vss.js when building
386232-
const version = '4.4.24';
386232+
const version = '4.4.25';
386233386233
_src_base_Exchange_js__WEBPACK_IMPORTED_MODULE_0__/* .Exchange */ .k.ccxtVersion = version;
386234386234
//-----------------------------------------------------------------------------
386235386235

dist/cjs/ccxt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ var xt$1 = require('./src/pro/xt.js');
197197

198198
//-----------------------------------------------------------------------------
199199
// this is updated by vss.js when building
200-
const version = '4.4.24';
200+
const version = '4.4.25';
201201
Exchange["default"].ccxtVersion = version;
202202
const exchanges = {
203203
'ace': ace,

js/ccxt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import * as errors from './src/base/errors.js';
3838
import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError } from './src/base/errors.js';
3939
//-----------------------------------------------------------------------------
4040
// this is updated by vss.js when building
41-
const version = '4.4.24';
41+
const version = '4.4.25';
4242
Exchange.ccxtVersion = version;
4343
//-----------------------------------------------------------------------------
4444
import ace from './src/ace.js';

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "4.4.24",
3+
"version": "4.4.25",
44
"description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges",
55
"unpkg": "dist/ccxt.browser.min.js",
66
"type": "module",

php/Exchange.php

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/async/Exchange.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@
4444

4545
use Exception;
4646

47-
$version = '4.4.24';
47+
$version = '4.4.25';
4848

4949
class Exchange extends \ccxt\Exchange {
5050

51-
const VERSION = '4.4.24';
51+
const VERSION = '4.4.25';
5252

5353
public $browser;
5454
public $marketsLoading = null;

python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ console.log(version, Object.keys(exchanges));
222222

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

225-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js
226-
* unpkg: https://unpkg.com/[email protected].24/dist/ccxt.browser.min.js
225+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js
226+
* unpkg: https://unpkg.com/[email protected].25/dist/ccxt.browser.min.js
227227

228228
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.
229229

230230
```HTML
231-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js"></script>
231+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js"></script>
232232
```
233233

234234
Creates a global `ccxt` object:

python/ccxt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# ----------------------------------------------------------------------------
2424

25-
__version__ = '4.4.24'
25+
__version__ = '4.4.25'
2626

2727
# ----------------------------------------------------------------------------
2828

python/ccxt/async_support/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '4.4.24'
7+
__version__ = '4.4.25'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/async_support/base/exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# -----------------------------------------------------------------------------
44

5-
__version__ = '4.4.24'
5+
__version__ = '4.4.25'
66

77
# -----------------------------------------------------------------------------
88

python/ccxt/base/exchange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# -----------------------------------------------------------------------------
66

7-
__version__ = '4.4.24'
7+
__version__ = '4.4.25'
88

99
# -----------------------------------------------------------------------------
1010

python/ccxt/pro/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# ----------------------------------------------------------------------------
66

7-
__version__ = '4.4.24'
7+
__version__ = '4.4.25'
88

99
# ----------------------------------------------------------------------------
1010

python/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ccxt",
3-
"version": "4.4.24",
3+
"version": "4.4.25",
44
"description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges",
55
"unpkg": "dist/ccxt.browser.min.js",
66
"type": "module",

ts/ccxt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ import {BaseError, ExchangeError, AuthenticationError, PermissionDenied, Account
4040
//-----------------------------------------------------------------------------
4141
// this is updated by vss.js when building
4242

43-
const version = '4.4.24';
43+
const version = '4.4.25';
4444

4545
(Exchange as any).ccxtVersion = version
4646

wiki/Install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ console.log (ccxt.exchanges) // print all available exchanges
4040

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

43-
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js
44-
* unpkg: https://unpkg.com/[email protected].24/dist/ccxt.browser.min.js
43+
* jsDelivr: https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js
44+
* unpkg: https://unpkg.com/[email protected].25/dist/ccxt.browser.min.js
4545
* ccxt: https://cdn.ccxt.com/latest/ccxt.min.js
4646

4747
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.
4848

4949
```html
50-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].24/dist/ccxt.browser.min.js"></script>
50+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/[email protected].25/dist/ccxt.browser.min.js"></script>
5151
```
5252

5353
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.

0 commit comments

Comments
 (0)