diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj
index c0b54f6..5bf50f4 100644
--- a/CryptoExchange.Net/CryptoExchange.Net.csproj
+++ b/CryptoExchange.Net/CryptoExchange.Net.csproj
@@ -6,16 +6,16 @@
CryptoExchange.Net
JKorf
A base package for implementing cryptocurrency exchange API's
- 4.2.7
- 4.2.7
- 4.2.7
+ 4.2.8
+ 4.2.8
+ 4.2.8
false
git
https://github.com/JKorf/CryptoExchange.Net.git
https://github.com/JKorf/CryptoExchange.Net
en
true
- 4.2.7 - Made receivedMessages protected again to allow implementations with custom transport (Bittrex) to use it again
+ 4.2.8 - Fixed deadlock in socket receive, Fixed issue in reconnection handling when the client is disconnected again during resubscribing, Added some additional checking of socket state to prevent sending/expecting data when socket is not connected
enable
8.0
MIT
diff --git a/README.md b/README.md
index 75ef161..481ab5a 100644
--- a/README.md
+++ b/README.md
@@ -324,6 +324,11 @@ private void SomeMethod()
````
## Release notes
+* Version 4.2.8 - 08 Oct 2021
+ * Fixed deadlock in socket receive
+ * Fixed issue in reconnection handling when the client is disconnected again during resubscribing
+ * Added some additional checking of socket state to prevent sending/expecting data when socket is not connected
+
* Version 4.2.7 - 06 Oct 2021
* Made receivedMessages protected again to allow implementations with custom transport (Bittrex) to use it again