1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-07 16:06:15 +00:00

Updated version

This commit is contained in:
JKorf 2024-03-16 15:25:07 +01:00
parent 7f29275851
commit 034eb83bae
2 changed files with 17 additions and 3 deletions

View File

@ -6,9 +6,9 @@
<PackageId>CryptoExchange.Net</PackageId>
<Authors>JKorf</Authors>
<Description>CryptoExchange.Net is a base library which is used to implement different cryptocurrency (exchange) API's. It provides a standardized way of implementing different API's, which results in a very similar experience for users of the API implementations.</Description>
<PackageVersion>7.0.0</PackageVersion>
<AssemblyVersion>7.0.0</AssemblyVersion>
<FileVersion>7.0.0</FileVersion>
<PackageVersion>7.1.0</PackageVersion>
<AssemblyVersion>7.1.0</AssemblyVersion>
<FileVersion>7.1.0</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>OKX;OKX.Net;Mexc;Mexc.Net;Kucoin;Kucoin.Net;Kraken;Kraken.Net;Huobi;Huobi.Net;CoinEx;CoinEx.Net;Bybit;Bybit.Net;Bitget;Bitget.Net;Bitfinex;Bitfinex.Net;Binance;Binance.Net;CryptoCurrency;CryptoCurrency Exchange</PackageTags>
<RepositoryType>git</RepositoryType>

View File

@ -40,6 +40,20 @@ Make a one time donation in a crypto currency of your choice. If you prefer to d
Alternatively, sponsor me on Github using [Github Sponsors](https://github.com/sponsors/JKorf).
## Release notes
* Version 7.1.0 - 16 Mar 2024
* Added initial System.Text.Json deserialization support
* Added support for setting MessageSendSizeLimit for websocket clients to limit message size
* Added Exchange name property to IRestClient and ISocketClient interface
* Abstracted out rest client deserialization so different (de)serializers can be used
* Cleaned up rest client response handling
* Continued update of websocket message handling
* Use ReadonlyMemory<byte> to represent message data to prevent copying data multiple times
* Switched back to non-async websocket message handling to remove tasks overhead
* Updated package dependencies to latest versions
* Updated unit test package dependencies and updated tests accordingly
* Moved some properties used by the RestApiClient from the BaseApiClient
* Fixed issue with multiple concurrent subscribe calls in socket client
* Version 7.0.0 - 24 Feb 2024
* Full overhaul of Websocket message handling
* Abstracted out Newtonsoft.Json references in preparation of moving to System.Text.Json