Skip to content

Commit e01aa2b

Browse files
committed
Fixed GetAccountInfoAsync deserialization
1 parent 08c955d commit e01aa2b

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -298,3 +298,4 @@ __pycache__/
298298
*.odx.cs
299299
*.xsd.cs
300300
*.nuspec
301+
Docs/

Binance.Net/Binance.Net.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<PropertyGroup>
88
<PackageId>Binance.Net</PackageId>
99
<Authors>JKorf, Nikkozp, CaptHolley</Authors>
10-
<PackageVersion>7.2.6</PackageVersion>
10+
<PackageVersion>7.2.7</PackageVersion>
1111
<AssemblyVersion>7.2.6</AssemblyVersion>
12-
<FileVersion>7.2.6</FileVersion>
12+
<FileVersion>7.2.7</FileVersion>
1313
<Description>Binance.Net is a .Net wrapper for the Binance API, including Binance Futures. It includes all features the API provides, REST API and Websocket, using clear and readable objects including but not limited to Reading market info, Placing and managing orders and Reading balances and funds</Description>
1414
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1515
<PackageTags>Binance Binance.Net C# .Net CryptoCurrency Exchange API wrapper</PackageTags>
@@ -20,7 +20,7 @@
2020
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2121
<NeutralLanguage>en</NeutralLanguage>
2222
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
23-
<PackageReleaseNotes>7.2.6 - Updated TransferType enum to match new API</PackageReleaseNotes>
23+
<PackageReleaseNotes>7.2.7 - Fixed permission deserialization issue in GetAccountInfoAsync</PackageReleaseNotes>
2424
</PropertyGroup>
2525
<PropertyGroup Label="Deterministic Build" Condition="'$(Configuration)' == 'Release'">
2626
<PublishRepositoryUrl>true</PublishRepositoryUrl>

Binance.Net/Binance.Net.xml

+5
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,11 @@
322322
Leveraged account type
323323
</summary>
324324
</member>
325+
<member name="F:Binance.Net.Enums.AccountType.TRD_GRP_002">
326+
<summary>
327+
See https://github.com/binance/binance-spot-api-docs/blob/master/rest-api.md#enum-definitions
328+
</summary>
329+
</member>
325330
<member name="T:Binance.Net.Enums.AccountUpdateReason">
326331
<summary>
327332
Account update reason

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ Yes, as long as the API endpoints are the same. Switch by changing the BaseAddre
167167
See Timestamping.
168168

169169
## Release notes
170+
* Version 7.2.7 - 29 Dec 2021
171+
* Fixed permission deserialization issue in GetAccountInfoAsync
172+
170173
* Version 7.2.6 - 09 Nov 2021
171174
* Updated TransferType enum to match new API
172175

0 commit comments

Comments
 (0)