File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
- ### 0.4.0 (2014-xx -xx)
4
+ ### 0.4.0 (2014-02 -xx)
5
5
6
6
* Feature: Added ChildProcess to run async child processes within the event loop (@jmikola )
7
7
* Feature: [ EventLoop] Added ` EventLoopInterface::nextTick() ` , implemented in all event loops (@jmalloc )
8
+ * Feature: [ EventLoop] Added ` EventLoopInterface::futureTick() ` , implemented in all event loops (@jmalloc )
8
9
* Feature: [ EventLoop] Added ` ExtEventLoop ` implementation using pecl/event (@jmalloc )
9
10
* BC break: [ HttpClient] Drop unused ` Response::getBody() `
10
11
* BC break: Bump minimum PHP version to PHP 5.4, remove 5.3 specific hacks
11
12
* BC break: Remove ` $loop ` argument from ` HttpClient ` : ` Client ` , ` Request ` , ` Response `
12
13
* BC break: Update to React/Promise 2.0
13
14
* BC break: Update to Evenement 2.0
14
15
* BC break: [ EventLoop] New method: ` EventLoopInterface::nextTick() `
16
+ * BC break: [ EventLoop] New method: ` EventLoopInterface::futureTick() `
15
17
* Bug fix: [ Dns] Properly resolve CNAME aliases
16
18
17
19
### 0.3.3 (2013-07-08)
18
-
20
+
19
21
* Bug fix: [ EventLoop] No error on removing non-existent streams (@clue )
20
22
* Bug fix: [ EventLoop] Do not silently remove feof listeners in ` LibEvLoop `
21
23
* Bug fix: [ Stream] Correctly detect closed connections
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ set -o pipefail
4
4
5
5
if [ " $TRAVIS_PHP_VERSION " != " hhvm" ]; then
6
6
7
- # install "libevent' (used by 'event' and 'libevent' PHP extensions)
7
+ # install "libevent" (used by 'event' and 'libevent' PHP extensions)
8
8
sudo apt-get install -y libevent-dev
9
9
10
10
# install 'event' PHP extension
You can’t perform that action at this time.
0 commit comments