1
0
mirror of https://github.com/JKorf/CryptoExchange.Net synced 2025-06-09 17:06:19 +00:00

Updated version

This commit is contained in:
Jkorf 2020-11-19 11:58:39 +01:00
parent 5451d3123f
commit 64bb8a2edf
2 changed files with 7 additions and 3 deletions

View File

@ -6,13 +6,13 @@
<PackageId>CryptoExchange.Net</PackageId> <PackageId>CryptoExchange.Net</PackageId>
<Authors>JKorf</Authors> <Authors>JKorf</Authors>
<Description>A base package for implementing cryptocurrency exchange API's</Description> <Description>A base package for implementing cryptocurrency exchange API's</Description>
<PackageVersion>3.1.0</PackageVersion> <PackageVersion>3.2.0</PackageVersion>
<AssemblyVersion>3.1.0</AssemblyVersion> <AssemblyVersion>3.2.0</AssemblyVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl> <PackageProjectUrl>https://github.com/JKorf/CryptoExchange.Net</PackageProjectUrl>
<NeutralLanguage>en</NeutralLanguage> <NeutralLanguage>en</NeutralLanguage>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReleaseNotes>3.1.0 - Added CallResult without type parameter for calls which don't return data, Added GetErrorOrResult method on CallResult to support proper nullability checking, Fix for reading credentials from file, Fix for setting custom base addresses in clients</PackageReleaseNotes> <PackageReleaseNotes>3.2.0 - Fix for multiple socket subscriptions re-using the same socket connection, Updated errors</PackageReleaseNotes>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<LangVersion>8.0</LangVersion> <LangVersion>8.0</LangVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression> <PackageLicenseExpression>MIT</PackageLicenseExpression>

View File

@ -203,6 +203,10 @@ The order book will automatically reconnect when the connection is lost and resy
To stop synchronizing an order book use the `Stop` method. To stop synchronizing an order book use the `Stop` method.
## Release notes ## Release notes
* Version 3.2.0 - 19 nov 2020
* Fix for multiple socket subscriptions re-using the same socket connection
* Updated errors
* Version 3.1.0 - 08 Oct 2020 * Version 3.1.0 - 08 Oct 2020
* Added CallResult without type parameter for calls which don't return data * Added CallResult without type parameter for calls which don't return data
* Added GetErrorOrResult method on CallResult to support proper nullability checking * Added GetErrorOrResult method on CallResult to support proper nullability checking