From e78f8b5d0e06ce521554b1bfa0f23cbdf237602d Mon Sep 17 00:00:00 2001 From: Chris Boden Date: Thu, 4 Jun 2020 10:22:07 -0400 Subject: [PATCH] Prep for v0.4.3 release --- CHANGELOG.md | 10 ++++++++++ LICENSE | 2 +- composer.json | 9 ++++++--- src/Ratchet/ConnectionInterface.php | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5169993..624beda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,16 @@ CHANGELOG --- +* 0.4.3 (2020-06-04) + * BF: Fixed interface acceptable regression in `App` + * Update RFC6455 library with latest fixes + +* 0.4.2 (2020-01-27) + * Support Symfony 5 + * BF: Use phpunit from vendor directory + * Allow disabling of xdebug warning by defining `RATCHET_DISABLE_XDEBUG_WARN` + * Stop using `LoopInterface::tick()` for testing + * 0.4.1 (2017-12-11) * Only enableKeepAlive in App if no WsServer passed allowing user to set their own timeout duration * Support Symfony 4 diff --git a/LICENSE b/LICENSE index 24abba1..9255875 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2011-2017 Chris Boden +Copyright (c) 2011-2020 Chris Boden Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/composer.json b/composer.json index 6521aa6..d89c66e 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,14 @@ , "email": "cboden@gmail.com" , "role": "Developer" } + , { + "name": "Matt Bonneau" + , "role": "Developer" + } ] , "support": { - "forum": "https://groups.google.com/forum/#!forum/ratchet-php" - , "issues": "https://github.com/ratchetphp/Ratchet/issues" - , "irc": "irc://irc.freenode.org/reactphp" + "issues": "https://github.com/ratchetphp/Ratchet/issues" + , "chat": "https://gitter.im/reactphp/reactphp" } , "autoload": { "psr-4": { diff --git a/src/Ratchet/ConnectionInterface.php b/src/Ratchet/ConnectionInterface.php index 26fb8a4..13abb07 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.4.1'; +const VERSION = 'Ratchet/0.4.3'; /** * A proxy object representing a connection to the application