1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2026-04-07 10:11:10 +00:00

Updated to version 10.1.0

This commit is contained in:
Jkorf 2026-01-07 10:03:45 +01:00
parent a896fffdb3
commit 0943b052b9
2 changed files with 18 additions and 3 deletions

View File

@ -6,9 +6,9 @@
<PackageId>CryptoExchange.Net</PackageId> <PackageId>CryptoExchange.Net</PackageId>
<Authors>JKorf</Authors> <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> <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>10.0.2</PackageVersion> <PackageVersion>10.1.0</PackageVersion>
<AssemblyVersion>10.0.2</AssemblyVersion> <AssemblyVersion>10.1.0</AssemblyVersion>
<FileVersion>10.0.2</FileVersion> <FileVersion>10.1.0</FileVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> <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;CryptoExchange.Net</PackageTags> <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;CryptoExchange.Net</PackageTags>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>

View File

@ -66,6 +66,21 @@ 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). Alternatively, sponsor me on Github using [Github Sponsors](https://github.com/sponsors/JKorf).
## Release notes ## Release notes
* Version 10.1.0 - 07 Jan 2026
* Updated time sync / time offset management for REST API's
* Added time offset tracking for WebSocket API's
* Added GetAuthenticationQuery virtual method on AuthenticationProvider
* Updated AuthenticationProvider GetTimestamp methods to include a one second offset by default
* Added AuthenticationProvider GetTimestamp methods for SocketApiClient instances
* Added ClientName property on BaseApiClient, resolving to the type name
* Added ObjectOrArrayConverter JsonConverterFactory implementation for resolving json data which might be returned as object or array
* Added UpdateServerTime, UpdateLocalTime and DataAge properties to (I)SymbolOrderBook
* Added OutputToConsoleAsync method to (I)SymbolOrderBook
* Updated SymbolOrderBook string representation
* Added DataTimeLocal and DataAge properties to DataEvent object
* Added SocketConnection parameter to subscription HandleSubQueryResponse and HandleUnsubQueryResponse methods
* Added some utility methods
* Version 10.0.2 - 19 Dec 2025 * Version 10.0.2 - 19 Dec 2025
* Fixed duplicate subscription check with updated deserialization * Fixed duplicate subscription check with updated deserialization
* Added exception handlers for REST response processing * Added exception handlers for REST response processing