Skip to content

Commit b141740

Browse files
committed
Update package.xml
1 parent 4c01f86 commit b141740

File tree

3 files changed

+45
-25
lines changed

3 files changed

+45
-25
lines changed

package.xml

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,22 @@
3030
<email>[email protected]</email>
3131
<active>yes</active>
3232
</developer>
33-
<date>2014-05-30</date>
34-
<time>15:51:51</time>
33+
<date>2014-06-20</date>
34+
<time>12:51:51</time>
3535
<version>
36-
<release>1.7.2</release>
37-
<api>1.7.2</api>
36+
<release>1.7.3</release>
37+
<api>1.7.3</api>
3838
</version>
3939
<stability>
4040
<release>stable</release>
4141
<api>stable</api>
4242
</stability>
4343
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
4444
<notes>
45-
- Fixed udp sendto error
46-
- Fixed heartbeat no close connection
47-
- Added swoole_process module
48-
- Added swoole_server::task large package
49-
- Added swoole_server task worker use message queue
50-
- Added messge queue ipc move to swoole_server::set
45+
- Fixed pipe_worker zero
46+
- Fixed serv->connect_count wrong
47+
- Fixed length_check dispatch error
48+
- Optimization of large size response packet
5149
</notes>
5250
<contents>
5351
<dir name="/">
@@ -99,6 +97,7 @@
9997
</dir>
10098
<dir name="process">
10199
<file role="src" name="worker.php" />
100+
<file role="src" name="exec.php" />
102101
</dir>
103102
<file role="src" name="server.php" />
104103
<file role="src" name="mysql_proxy_server.php" />
@@ -199,18 +198,39 @@
199198
<extsrcrelease />
200199
<changelog>
201200
<release>
202-
<date>2014-04-30</date>
203-
<time>19:51:51</time>
204-
<version>
205-
<release>1.7.1</release>
206-
<api>1.7.1</api>
207-
</version>
208-
<stability>
209-
<release>stable</release>
210-
<api>stable</api>
211-
</stability>
212-
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
213-
<notes>
201+
<date>2014-05-30</date>
202+
<time>15:51:51</time>
203+
<version>
204+
<release>1.7.2</release>
205+
<api>1.7.2</api>
206+
</version>
207+
<stability>
208+
<release>stable</release>
209+
<api>stable</api>
210+
</stability>
211+
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
212+
<notes>
213+
- Fixed udp sendto error
214+
- Fixed heartbeat no close connection
215+
- Added swoole_process module
216+
- Added swoole_server::task large package
217+
- Added swoole_server task worker use message queue
218+
- Added messge queue ipc move to swoole_server::set
219+
</notes>
220+
</release>
221+
<release>
222+
<date>2014-04-30</date>
223+
<time>19:51:51</time>
224+
<version>
225+
<release>1.7.1</release>
226+
<api>1.7.1</api>
227+
</version>
228+
<stability>
229+
<release>stable</release>
230+
<api>stable</api>
231+
</stability>
232+
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
233+
<notes>
214234
- Check close fd is not timer_fd
215235
- TCP_DEFER_ACCEPT option
216236
- socket LINGER option
@@ -222,7 +242,7 @@
222242
- Using php_error_docref
223243
- Fixed swoole_async_dns_lookup warning
224244
</notes>
225-
</release>
245+
</release>
226246
<release>
227247
<date>2014-04-16</date>
228248
<time>19: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.3-stable"
35+
#define PHP_SWOOLE_VERSION "1.7.3"
3636
#define PHP_SWOOLE_CHECK_CALLBACK
3737

3838
/**

swoole.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ PHP_MINIT_FUNCTION(swoole)
546546
REGISTER_LONG_CONSTANT("SWOOLE_SHORT", SW_NUM_SHORT, CONST_CS | CONST_PERSISTENT);
547547
REGISTER_LONG_CONSTANT("SWOOLE_INT", SW_NUM_INT, CONST_CS | CONST_PERSISTENT);
548548

549-
REGISTER_STRINGL_CONSTANT("SWOOLE_VERSION", PHP_SWOOLE_VERSION, sizeof(PHP_SWOOLE_VERSION) - 1, CONST_CS | CONST_PERSISTENT);
549+
REGISTER_STRINGL_CONSTANT("SWOOLE_VERSION", PHP_SWOOLE_VERSION, sizeof(PHP_SWOOLE_VERSION) - 1, CONST_CS | CONST_PERSISTENT);
550550

551551
INIT_CLASS_ENTRY(swoole_client_ce, "swoole_client", swoole_client_methods);
552552
swoole_client_class_entry_ptr = zend_register_internal_class(&swoole_client_ce TSRMLS_CC);

0 commit comments

Comments
 (0)