Skip to content

Commit

Permalink
Meta for 0.3.1 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
cboden committed May 27, 2014
1 parent 2085550 commit e1dba72
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ php:
- 5.5
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "session.serialize_handler = php" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- composer install --dev --prefer-source
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ CHANGELOG

---

* 0.3.1 (2014-05-26)

* Added query parameter support to Router, set in HTTP request (ws://server?hello=world)
* HHVM compatibility
* BF: React/0.4 support; CPU starvation bug fixes
* BF: Allow App::route to ignore Host header
* Added expected filters to WAMP Topic broadcast method
* Resource cleanup in WAMP TopicManager

* 0.3.0 (2013-10-14)

* Added the `App` class to help making Ratchet so easy to use it's silly
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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 - 31, Firefox 6 - 26, Safari 5.0.1 - 6.1, iOS 4.2 - 7
* Tested on Chrome 13+, Firefox 6+, Safari 5+, iOS 4.2+, IE 8+
* Ratchet [passes](http://socketo.me/reports/ab/) the [Autobahn Testsuite](http://autobahn.ws/testsuite) (non-binary messages)

##Requirements
Expand All @@ -19,7 +19,7 @@ To avoid proxy/firewall blockage it's recommended WebSockets are requested on po
In order to do this, along with your sync web stack, you can either use a reverse proxy or two separate machines.
You can find more details in the [server conf docs](http://socketo.me/docs/deploy#serverconfiguration).

PHP 5.3.9 (or higher) is required. If you have access, PHP 5.4 is *highly* recommended for its performance improvements.
PHP 5.3.9 (or higher) is required. If you have access, PHP 5.4 (or higher) is *highly* recommended for its performance improvements.

### Documentation

Expand Down
2 changes: 1 addition & 1 deletion src/Ratchet/ConnectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* The version of Ratchet being used
* @var string
*/
const VERSION = 'Ratchet/0.3';
const VERSION = 'Ratchet/0.3.1';

/**
* A proxy object representing a connection to the application
Expand Down

0 comments on commit e1dba72

Please sign in to comment.