Prep for v0.4.3 release
This commit is contained in:
parent
dbc93b73d8
commit
e78f8b5d0e
10
CHANGELOG.md
10
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)
|
* 0.4.1 (2017-12-11)
|
||||||
* Only enableKeepAlive in App if no WsServer passed allowing user to set their own timeout duration
|
* Only enableKeepAlive in App if no WsServer passed allowing user to set their own timeout duration
|
||||||
* Support Symfony 4
|
* Support Symfony 4
|
||||||
|
2
LICENSE
2
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
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -11,11 +11,14 @@
|
|||||||
, "email": "cboden@gmail.com"
|
, "email": "cboden@gmail.com"
|
||||||
, "role": "Developer"
|
, "role": "Developer"
|
||||||
}
|
}
|
||||||
|
, {
|
||||||
|
"name": "Matt Bonneau"
|
||||||
|
, "role": "Developer"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
, "support": {
|
, "support": {
|
||||||
"forum": "https://groups.google.com/forum/#!forum/ratchet-php"
|
"issues": "https://github.com/ratchetphp/Ratchet/issues"
|
||||||
, "issues": "https://github.com/ratchetphp/Ratchet/issues"
|
, "chat": "https://gitter.im/reactphp/reactphp"
|
||||||
, "irc": "irc://irc.freenode.org/reactphp"
|
|
||||||
}
|
}
|
||||||
, "autoload": {
|
, "autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
|
@ -5,7 +5,7 @@ namespace Ratchet;
|
|||||||
* The version of Ratchet being used
|
* The version of Ratchet being used
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
const VERSION = 'Ratchet/0.4.1';
|
const VERSION = 'Ratchet/0.4.3';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A proxy object representing a connection to the application
|
* A proxy object representing a connection to the application
|
||||||
|
Loading…
Reference in New Issue
Block a user