Skip to content

Commit e431d00

Browse files
committed
update package.xml
1 parent 91ea359 commit e431d00

File tree

2 files changed

+41
-12
lines changed

2 files changed

+41
-12
lines changed

package.xml

Lines changed: 40 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@
77
<channel>pecl.php.net</channel>
88
<summary>PHP's asynchronous concurrent distributed networking framework</summary>
99
<description>PHP's asynchronous concurrent distributed networking framework.
10-
- Event-driven
11-
- Asynchronous non-blocking
12-
- Multi-Thread reactor
13-
- Multi-Process worker
14-
- Millisecond timer
15-
- Asynchronous MySQL
16-
- AsyncTask workers
10+
- event-driven
11+
- full asynchronous non-blocking
12+
- multi-thread reactor
13+
- multi-process worker
14+
- millisecond timer
15+
- async MySQL
16+
- async task
17+
- async read/write file system
18+
- async dns lookup
19+
- support IPv4/IPv6/UnixSocket/TCP/UDP
1720
</description>
1821
<lead>
1922
<name>Tianfeng Han</name>
@@ -27,19 +30,28 @@
2730
<email>[email protected]</email>
2831
<active>yes</active>
2932
</developer>
30-
<date>2014-04-16</date>
33+
<date>2014-04-30</date>
3134
<time>19:51:51</time>
3235
<version>
33-
<release>1.7.0</release>
34-
<api>1.7.0</api>
36+
<release>1.7.1</release>
37+
<api>1.7.1</api>
3538
</version>
3639
<stability>
3740
<release>stable</release>
3841
<api>stable</api>
3942
</stability>
4043
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
4144
<notes>
42-
- Fixed compile error.
45+
- Check close fd is not timer_fd
46+
- TCP_DEFER_ACCEPT option
47+
- socket LINGER option
48+
- Fixed eof_check memory error
49+
- Added swoole_event_set
50+
- Added swoole_client out_buffer
51+
- Added socket linger option
52+
- Fixed the swoole_server->close destroy out_buffer bug
53+
- Using php_error_docref
54+
- Fixed swoole_async_dns_lookup warning
4355
</notes>
4456
<contents>
4557
<dir name="/">
@@ -183,6 +195,23 @@
183195
<providesextension>swoole</providesextension>
184196
<extsrcrelease />
185197
<changelog>
198+
<release>
199+
<date>2014-04-16</date>
200+
<time>19:51:51</time>
201+
<version>
202+
<release>1.7.0</release>
203+
<api>1.7.0</api>
204+
</version>
205+
<stability>
206+
<release>stable</release>
207+
<api>stable</api>
208+
</stability>
209+
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
210+
<notes>
211+
- Fixed compile error.
212+
</notes>
213+
</release>
214+
186215
<release>
187216
<date>2014-04-11</date>
188217
<time>10:51:51</time>

php_swoole.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include "Server.h"
3333
#include "Client.h"
3434

35-
#define PHP_SWOOLE_VERSION "1.7.1-stable"
35+
#define PHP_SWOOLE_VERSION "1.7.1"
3636
#define PHP_SWOOLE_CHECK_CALLBACK
3737

3838
/**

0 commit comments

Comments
 (0)