diff --git a/README.md b/README.md index c4e612d2..1206664d 100644 --- a/README.md +++ b/README.md @@ -113,11 +113,11 @@ See [`WebSocket4NetClientWebSocket.cs`][websocket4net] for implementation detail #### dotnet CLI -[`dotnet add package DigitalRuby.ExchangeSharp --version 1.0.2`][nuget] +[`dotnet add package DigitalRuby.ExchangeSharp --version 1.0.3`][nuget] #### Package Manager on VS -[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.0.2`][nuget] +[`PM> Install-Package DigitalRuby.ExchangeSharp -Version 1.0.3`][nuget] ### Examples diff --git a/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs b/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs index 8fb9d4ad..1eefe5e0 100644 --- a/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs +++ b/src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs @@ -68,7 +68,7 @@ protected BinanceGroupCommon() * - 5,000 raw requests per 5 min * Since the most restrictive is the 100 orders per 10 seconds, and OCO orders count for 2, we can conservatively do a little less than 50 per 10 seconds */ - RateLimit = new RateGate(40, TimeSpan.FromSeconds(10)); // set to 9 to be safe + RateLimit = new RateGate(40, TimeSpan.FromSeconds(10)); } public override Task ExchangeMarketSymbolToGlobalMarketSymbolAsync(string marketSymbol) diff --git a/src/ExchangeSharp/ExchangeSharp.csproj b/src/ExchangeSharp/ExchangeSharp.csproj index 664fb634..0ed347c7 100644 --- a/src/ExchangeSharp/ExchangeSharp.csproj +++ b/src/ExchangeSharp/ExchangeSharp.csproj @@ -8,7 +8,7 @@ 8 DigitalRuby.ExchangeSharp ExchangeSharp - C# API for cryptocurrency exchanges - 1.0.2 + 1.0.3 jjxtra ExchangeSharp is a C# API for working with various cryptocurrency exchanges. Web sockets are also supported for some exchanges. 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. diff --git a/src/ExchangeSharp/Properties/AssemblyInfo.cs b/src/ExchangeSharp/Properties/AssemblyInfo.cs index 1508da8c..5a5d7ac1 100644 --- a/src/ExchangeSharp/Properties/AssemblyInfo.cs +++ b/src/ExchangeSharp/Properties/AssemblyInfo.cs @@ -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("1.0.2")] -[assembly: AssemblyFileVersion("1.0.2")] +[assembly: AssemblyVersion("1.0.3")] +[assembly: AssemblyFileVersion("1.0.3")] [assembly: InternalsVisibleTo("ExchangeSharpTests")] diff --git a/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj b/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj index e3613c85..eb21f2b3 100644 --- a/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj +++ b/src/ExchangeSharpConsole/ExchangeSharpConsole.csproj @@ -5,8 +5,8 @@ exchange-sharp net6.0 en - 1.0.2 - 1.0.2 + 1.0.3 + 1.0.3 diff --git a/tests/ExchangeSharpTests/ExchangeSharpTests.csproj b/tests/ExchangeSharpTests/ExchangeSharpTests.csproj index 2cace1c1..22556065 100644 --- a/tests/ExchangeSharpTests/ExchangeSharpTests.csproj +++ b/tests/ExchangeSharpTests/ExchangeSharpTests.csproj @@ -4,8 +4,8 @@ net6.0 false en - 1.0.2 - 1.0.2 + 1.0.3 + 1.0.3 true