File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ ### 0.4.1 (2014-04-13)
5
+
6
+ * Bug fix: [ EventLoop] null timeout in StreamSelectLoop causing 100% CPU usage (@clue )
7
+ * Bug fix: [ Socket] Check read buffer for data before shutdown signal and end emit (@ArtyDev )
8
+ * Bug fix: [ DNS] Fixed PSR-4 autoload path (@marcj/WyriHaximus )
9
+ * Bug fix: v0.3.4 changes merged for v0.4.1
10
+
4
11
### 0.3.4 (2014-03-30)
5
12
6
13
* Bug fix: [ Stream] Fixed 100% CPU spike from non-empty write buffer on closed stream
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ The recommended way to install react is [through composer](http://getcomposer.or
11
11
``` JSON
12
12
{
13
13
"require" : {
14
- "react/react" : " 0.3 .*"
14
+ "react/react" : " 0.4 .*"
15
15
}
16
16
}
17
17
```
Original file line number Diff line number Diff line change @@ -18,4 +18,5 @@ $GIT_SUBSPLIT publish "
18
18
src/Http:git@github.com:reactphp/http.git
19
19
src/HttpClient:git@github.com:reactphp/http-client.git
20
20
src/Dns:git@github.com:reactphp/dns.git
21
+ src/ChildProcess:git@github.com/reactphp/child-process.git
21
22
" --heads=master
You can’t perform that action at this time.
0 commit comments