diff --git a/CHANGELOG.md b/CHANGELOG.md index d3d4f20..e1585c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ CHANGELOG --- +* 0.3.2 (2014-06-08) + + * BF: No messages after closing handshake (fixed rare race condition causing 100% CPU) + * BF: Fixed accidental BC break from v0.3.1 + * Added autoDelete parameter to Topic to destroy when empty of connections + * Exposed React Socket on IoServer (allowing FlashPolicy shutdown in App) + * Normalized Exceptions in WAMP + * 0.3.1 (2014-05-26) * Added query parameter support to Router, set in HTTP request (ws://server?hello=world) diff --git a/src/Ratchet/ConnectionInterface.php b/src/Ratchet/ConnectionInterface.php index cb28b5e..594e339 100644 --- a/src/Ratchet/ConnectionInterface.php +++ b/src/Ratchet/ConnectionInterface.php @@ -5,7 +5,7 @@ namespace Ratchet; * The version of Ratchet being used * @var string */ -const VERSION = 'Ratchet/0.3.1'; +const VERSION = 'Ratchet/0.3.2'; /** * A proxy object representing a connection to the application