Skip to content

Commit

Permalink
Update package.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed Jun 20, 2014
1 parent 4c01f86 commit b141740
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 25 deletions.
66 changes: 43 additions & 23 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,22 @@
<email>[email protected]</email>
<active>yes</active>
</developer>
<date>2014-05-30</date>
<time>15:51:51</time>
<date>2014-06-20</date>
<time>12:51:51</time>
<version>
<release>1.7.2</release>
<api>1.7.2</api>
<release>1.7.3</release>
<api>1.7.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Fixed udp sendto error
- Fixed heartbeat no close connection
- Added swoole_process module
- Added swoole_server::task large package
- Added swoole_server task worker use message queue
- Added messge queue ipc move to swoole_server::set
- Fixed pipe_worker zero
- Fixed serv->connect_count wrong
- Fixed length_check dispatch error
- Optimization of large size response packet
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -99,6 +97,7 @@
</dir>
<dir name="process">
<file role="src" name="worker.php" />
<file role="src" name="exec.php" />
</dir>
<file role="src" name="server.php" />
<file role="src" name="mysql_proxy_server.php" />
Expand Down Expand Up @@ -199,18 +198,39 @@
<extsrcrelease />
<changelog>
<release>
<date>2014-04-30</date>
<time>19:51:51</time>
<version>
<release>1.7.1</release>
<api>1.7.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
<date>2014-05-30</date>
<time>15:51:51</time>
<version>
<release>1.7.2</release>
<api>1.7.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Fixed udp sendto error
- Fixed heartbeat no close connection
- Added swoole_process module
- Added swoole_server::task large package
- Added swoole_server task worker use message queue
- Added messge queue ipc move to swoole_server::set
</notes>
</release>
<release>
<date>2014-04-30</date>
<time>19:51:51</time>
<version>
<release>1.7.1</release>
<api>1.7.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Check close fd is not timer_fd
- TCP_DEFER_ACCEPT option
- socket LINGER option
Expand All @@ -222,7 +242,7 @@
- Using php_error_docref
- Fixed swoole_async_dns_lookup warning
</notes>
</release>
</release>
<release>
<date>2014-04-16</date>
<time>19:51:51</time>
Expand Down
2 changes: 1 addition & 1 deletion php_swoole.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "Server.h"
#include "Client.h"

#define PHP_SWOOLE_VERSION "1.7.3-stable"
#define PHP_SWOOLE_VERSION "1.7.3"
#define PHP_SWOOLE_CHECK_CALLBACK

/**
Expand Down
2 changes: 1 addition & 1 deletion swoole.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ PHP_MINIT_FUNCTION(swoole)
REGISTER_LONG_CONSTANT("SWOOLE_SHORT", SW_NUM_SHORT, CONST_CS | CONST_PERSISTENT);
REGISTER_LONG_CONSTANT("SWOOLE_INT", SW_NUM_INT, CONST_CS | CONST_PERSISTENT);

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

INIT_CLASS_ENTRY(swoole_client_ce, "swoole_client", swoole_client_methods);
swoole_client_class_entry_ptr = zend_register_internal_class(&swoole_client_ce TSRMLS_CC);
Expand Down

0 comments on commit b141740

Please sign in to comment.