diff --git a/Build/MQTTnet.nuspec b/Build/MQTTnet.nuspec
index 84e44b6..8cc4e3d 100644
--- a/Build/MQTTnet.nuspec
+++ b/Build/MQTTnet.nuspec
@@ -12,6 +12,7 @@
MQTTnet is a .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker).
* [Client] Added support for web socket communication channel (thanks to nowakpiotr)
* [Core] Huge performance optimizations (thanks to JanEggers)
+* [Client] Fixed an issue when calling _DisconnectAsync_ and the connection is already closed.
Copyright Christian Kratky 2016-2017
MQTT MQTTClient MQTTServer MQTTBroker Broker NETStandard IoT InternetOfThings Messaging Queue Hardware Arduino
diff --git a/README.md b/README.md
index 5433cb1..95755a8 100644
--- a/README.md
+++ b/README.md
@@ -11,15 +11,17 @@ MQTTnet is a .NET library for MQTT based communication. It provides a MQTT clien
# Features
### General
-* Performance optimized (publishing ~18.000 messages per second on local machine)
* Async support
* TLS 1.2 support for client and server (but not UWP servers)
* Extensible communication channels (i.e. In-Memory, TCP, TCP+TLS, WS)
-* Interfaces included for mocking and testing
+* Performance optimized (processing ~20.000 messages / second)*
* Lightweight (only the low level implementation of MQTT, no overhead)
+* Interfaces included for mocking and testing
* Access to internal trace messages
* Unit tested (55+ tests)
+\* Tested on local machine with MQTTnet client and server running in the same process.
+
### Client
* Rx support (via another project)
* Communication via TCP (+TLS) or WS (WebSocket)