Skip to content

Commit

Permalink
new NuGet 0.9.0 (#671)
Browse files Browse the repository at this point in the history
- updated exchange listing on README.md
  • Loading branch information
vslee authored Oct 2, 2021
1 parent 0e50b6a commit 9a2c515
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ Feel free to visit the discord channel at https://discord.gg/sHCUHH3 and chat wi
### Exchanges

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

| Exchange Name | Public REST | Private REST | Web Socket | Notes |
| -------------- | ----------- | ------------ | ---------- | ---------------------------------------- |
| Aquanow | wip | x | |
| Binance | x | x | T R B |
| Binance Jersey | x | x | T R B |
| Binance.US | x | x | T R B |
| Binance | x | x | T R B U |
| Binance Jersey | x | x | T R B U |
| Binance.US | x | x | T R B U |
| Binance DEX | | | R |
| Bitbank | x | x | |
| Bitfinex | x | x | T R O |
Expand All @@ -39,9 +39,10 @@ The following cryptocurrency exchanges are supported:
| Bleutrade | x | x | |
| BTSE | x | x | |
| Bybit | x | x | R | Has public method for Websocket Positions
| Coinbase | x | x | T R |
| Coinbase | x | x | T R U |
| Digifinex | x | x | R B |
| FTX | x | x | T |
| gate.io | x | x | |
| Gemini | x | x | T R B |
| HitBTC | x | x | R |
| Huobi | x | x | R B |
Expand Down Expand Up @@ -101,11 +102,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail

#### dotnet CLI

[`dotnet add package DigitalRuby.ExchangeSharp --version 0.8.2`][nuget]
[`dotnet add package DigitalRuby.ExchangeSharp --version 0.9.0`][nuget]

#### Package Manager on VS

[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.8.2`][nuget]
[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 0.9.0`][nuget]

### Examples

Expand Down
2 changes: 1 addition & 1 deletion src/ExchangeSharp/ExchangeSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<LangVersion>8</LangVersion>
<PackageId>DigitalRuby.ExchangeSharp</PackageId>
<Title>ExchangeSharp - C# API for cryptocurrency exchanges</Title>
<PackageVersion>0.8.3</PackageVersion>
<PackageVersion>0.9.0</PackageVersion>
<Authors>jjxtra</Authors>
<Description>ExchangeSharp is a C# API for working with various cryptocurrency exchanges. Web sockets are also supported for some exchanges.</Description>
<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>
Expand Down
4 changes: 2 additions & 2 deletions src/ExchangeSharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("0.8.2")]
[assembly: AssemblyFileVersion("0.8.2")]
[assembly: AssemblyVersion("0.9.0")]
[assembly: AssemblyFileVersion("0.9.0")]
[assembly: InternalsVisibleTo("ExchangeSharpTests")]
4 changes: 2 additions & 2 deletions src/ExchangeSharpConsole/ExchangeSharpConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>8</LangVersion>
<AssemblyVersion>0.8.2</AssemblyVersion>
<FileVersion>0.8.2</FileVersion>
<AssemblyVersion>0.9.0</AssemblyVersion>
<FileVersion>0.9.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions tests/ExchangeSharpTests/ExchangeSharpTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<IsPackable>false</IsPackable>
<LangVersion>8</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>0.8.2</AssemblyVersion>
<FileVersion>0.8.2</FileVersion>
<AssemblyVersion>0.9.0</AssemblyVersion>
<FileVersion>0.9.0</FileVersion>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>

Expand Down

0 comments on commit 9a2c515

Please sign in to comment.