Skip to content

Commit 9a2c515

Browse files
authored
new NuGet 0.9.0 (#671)
- updated exchange listing on README.md
1 parent 0e50b6a commit 9a2c515

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Feel free to visit the discord channel at https://discord.gg/sHCUHH3 and chat wi
2020
### Exchanges
2121

2222
The following cryptocurrency exchanges are supported:
23-
(Web socket key: T = tickers, R = trades, B = order book, O = private orders)
23+
(Web socket key: T = tickers, R = trades, B = order book, O = private orders, U = user data)
2424

2525
| Exchange Name | Public REST | Private REST | Web Socket | Notes |
2626
| -------------- | ----------- | ------------ | ---------- | ---------------------------------------- |
2727
| Aquanow | wip | x | |
28-
| Binance | x | x | T R B |
29-
| Binance Jersey | x | x | T R B |
30-
| Binance.US | x | x | T R B |
28+
| Binance | x | x | T R B U |
29+
| Binance Jersey | x | x | T R B U |
30+
| Binance.US | x | x | T R B U |
3131
| Binance DEX | | | R |
3232
| Bitbank | x | x | |
3333
| Bitfinex | x | x | T R O |
@@ -39,9 +39,10 @@ The following cryptocurrency exchanges are supported:
3939
| Bleutrade | x | x | |
4040
| BTSE | x | x | |
4141
| Bybit | x | x | R | Has public method for Websocket Positions
42-
| Coinbase | x | x | T R |
42+
| Coinbase | x | x | T R U |
4343
| Digifinex | x | x | R B |
4444
| FTX | x | x | T |
45+
| gate.io | x | x | |
4546
| Gemini | x | x | T R B |
4647
| HitBTC | x | x | R |
4748
| Huobi | x | x | R B |
@@ -101,11 +102,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail
101102

102103
#### dotnet CLI
103104

104-
[`dotnet add package DigitalRuby.ExchangeSharp --version 0.8.2`][nuget]
105+
[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.0`][nuget]
105106

106107
#### Package Manager on VS
107108

108-
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.8.2`][nuget]
109+
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.9.0`][nuget]
109110

110111
### Examples
111112

src/ExchangeSharp/ExchangeSharp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<LangVersion>8</LangVersion>
99
<PackageId>DigitalRuby.ExchangeSharp</PackageId>
1010
<Title>ExchangeSharp - C# API for cryptocurrency exchanges</Title>
11-
<PackageVersion>0.8.3</PackageVersion>
11+
<PackageVersion>0.9.0</PackageVersion>
1212
<Authors>jjxtra</Authors>
1313
<Description>ExchangeSharp is a C# API for working with various cryptocurrency exchanges. Web sockets are also supported for some exchanges.</Description>
1414
<Summary>Supported exchanges: Binance BitMEX Bitfinex Bithumb Bitstamp Bittrex BL3P Bleutrade BTSE Cryptopia Coinbase(GDAX) Digifinex Gemini Gitbtc Huobi Kraken Kucoin Livecoin NDAX OKCoin OKEx Poloniex TuxExchange Yobit ZBcom. Pull requests welcome.</Summary>

src/ExchangeSharp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
//
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("0.8.2")]
35-
[assembly: AssemblyFileVersion("0.8.2")]
34+
[assembly: AssemblyVersion("0.9.0")]
35+
[assembly: AssemblyFileVersion("0.9.0")]
3636
[assembly: InternalsVisibleTo("ExchangeSharpTests")]

src/ExchangeSharpConsole/ExchangeSharpConsole.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<TargetFramework>netcoreapp3.1</TargetFramework>
77
<NeutralLanguage>en</NeutralLanguage>
88
<LangVersion>8</LangVersion>
9-
<AssemblyVersion>0.8.2</AssemblyVersion>
10-
<FileVersion>0.8.2</FileVersion>
9+
<AssemblyVersion>0.9.0</AssemblyVersion>
10+
<FileVersion>0.9.0</FileVersion>
1111
</PropertyGroup>
1212

1313
<ItemGroup>

tests/ExchangeSharpTests/ExchangeSharpTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<IsPackable>false</IsPackable>
66
<LangVersion>8</LangVersion>
77
<NeutralLanguage>en</NeutralLanguage>
8-
<AssemblyVersion>0.8.2</AssemblyVersion>
9-
<FileVersion>0.8.2</FileVersion>
8+
<AssemblyVersion>0.9.0</AssemblyVersion>
9+
<FileVersion>0.9.0</FileVersion>
1010
<NoWin32Manifest>true</NoWin32Manifest>
1111
</PropertyGroup>
1212

0 commit comments

Comments
 (0)