diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dc88e5..628e92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ CHANGELOG --- +* 0.2.1 (2012-10-13) + + * BF: No more UTF-8 warnings in browsers (no longer sending empty sub-protocol string) + * Documentation corrections + * Using new composer structure + * 0.2 (2012-09-07) * Ratchet passes every non-binary-frame test from the Autobahn Testsuite diff --git a/README.md b/README.md index d1c5452..b6e3c76 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Build up your application through simple interfaces and re-use your application ##WebSocket Compliance * Supports the RFC6455, HyBi-10+, and Hixie76 protocol versions (at the same time) -* Tested on Chrome 13 - 21, Firefox 6 - 16, Safari 5.0.1 - 6.0, iOS 4.2, iOS 5 +* Tested on Chrome 13 - 22, Firefox 6 - 16, Safari 5.0.1 - 6, iOS 4.2, iOS 5 - 6 * Ratchet [passes](http://socketo.me/reports/ab/) the [Autobahn Testsuite](http://autobahn.ws/testsuite) (non-binary messages) ##Requirements diff --git a/src/Ratchet/ConnectionInterface.php b/src/Ratchet/ConnectionInterface.php index 1fc1fde..4378db2 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.2'; +const VERSION = 'Ratchet/0.2.1'; /** * A proxy object representing a connection to the application