Skip to content

Commit 466a0ec

Browse files
authored
Merge pull request #814 from ratchetphp/v0.4.3-release
Prep for v0.4.3 release
2 parents dbc93b7 + e78f8b5 commit 466a0ec

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ CHANGELOG
88

99
---
1010

11+
* 0.4.3 (2020-06-04)
12+
* BF: Fixed interface acceptable regression in `App`
13+
* Update RFC6455 library with latest fixes
14+
15+
* 0.4.2 (2020-01-27)
16+
* Support Symfony 5
17+
* BF: Use phpunit from vendor directory
18+
* Allow disabling of xdebug warning by defining `RATCHET_DISABLE_XDEBUG_WARN`
19+
* Stop using `LoopInterface::tick()` for testing
20+
1121
* 0.4.1 (2017-12-11)
1222
* Only enableKeepAlive in App if no WsServer passed allowing user to set their own timeout duration
1323
* Support Symfony 4

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011-2017 Chris Boden
1+
Copyright (c) 2011-2020 Chris Boden
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@
1111
, "email": "cboden@gmail.com"
1212
, "role": "Developer"
1313
}
14+
, {
15+
"name": "Matt Bonneau"
16+
, "role": "Developer"
17+
}
1418
]
1519
, "support": {
16-
"forum": "https://groups.google.com/forum/#!forum/ratchet-php"
17-
, "issues": "https://github.com/ratchetphp/Ratchet/issues"
18-
, "irc": "irc://irc.freenode.org/reactphp"
20+
"issues": "https://github.com/ratchetphp/Ratchet/issues"
21+
, "chat": "https://gitter.im/reactphp/reactphp"
1922
}
2023
, "autoload": {
2124
"psr-4": {

src/Ratchet/ConnectionInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* The version of Ratchet being used
66
* @var string
77
*/
8-
const VERSION = 'Ratchet/0.4.1';
8+
const VERSION = 'Ratchet/0.4.3';
99

1010
/**
1111
* A proxy object representing a connection to the application

0 commit comments

Comments
 (0)