diff --git a/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs b/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs index 59917c6..beefa97 100644 --- a/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs +++ b/CryptoExchange.Net.UnitTests/SymbolOrderBookTests.cs @@ -14,7 +14,7 @@ namespace CryptoExchange.Net.UnitTests [TestFixture] public class SymbolOrderBookTests { - private static OrderBookOptions defaultOrderBookOptions = new OrderBookOptions("Test", true); + private static OrderBookOptions defaultOrderBookOptions = new OrderBookOptions("Test", true, false); private class TestableSymbolOrderBook : SymbolOrderBook { diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj index b061108..62bb836 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.csproj +++ b/CryptoExchange.Net/CryptoExchange.Net.csproj @@ -6,12 +6,12 @@ CryptoExchange.Net JKorf A base package for implementing cryptocurrency exchange API's - 3.0.9 + 3.0.10 false https://github.com/JKorf/CryptoExchange.Net en true - 3.0.9 - Added arraySerialization and postParameterPosition to AuthenticationProvider interface, fixed array serialization in request body + 3.0.10 - Fix for order book synchronization enable 8.0 MIT diff --git a/README.md b/README.md index c3b538e..664643c 100644 --- a/README.md +++ b/README.md @@ -194,6 +194,9 @@ The order book will automatically reconnect when the connection is lost and resy To stop synchronizing an order book use the `Stop` method. ## Release notes +* Version 3.0.10 - 16 Jun 2020 + * Fix for order book synchronization + * Version 3.0.9 - 07 Jun 2020 * Added arraySerialization and postParameterPosition to AuthenticationProvider interface * Fixed array serialization in request body