Skip to content

Commit

Permalink
Update version for Swoole 4.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
twose committed Nov 26, 2018
1 parent 9c073f6 commit 707ab3b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROJECT(libswoole)

ENABLE_LANGUAGE(ASM)
SET(SWOOLE_VERSION 4.2.8)
SET(SWOOLE_VERSION 4.2.9)
SET(SWOOLE_CLFLAGS pthread rt dl ssl crypt crypto nghttp2)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
Expand Down
2 changes: 1 addition & 1 deletion include/swoole.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int daemon(int nochdir, int noclose);

/*----------------------------------------------------------------------------*/

#define SWOOLE_VERSION "4.2.9-alpha"
#define SWOOLE_VERSION "4.2.9"
#define SWOOLE_BUG_REPORT \
"A bug occurred in Swoole-v" SWOOLE_VERSION ", please report it.\n"\
"The Swoole developers probably don't know about it,\n"\
Expand Down
32 changes: 20 additions & 12 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@
<email>[email protected]</email>
<active>yes</active>
</developer>
<date>2018-11-19</date>
<time>18:30:00</time>
<date>2018-11-26</date>
<time>14:30:00</time>
<version>
<release>4.2.8</release>
<release>4.2.9</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -48,14 +48,19 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
+ Better PHP stack coroutine switcher and Channel implementation
+ GDB Debugging Tool for Coroutine
* MySQL Module Optimization (#2124)
* Postgre Module Optimization (#2069)
* Fixed bugs in MySQL client using Stored Procedure (#2117)
* Fixed HTTP client large file upload BUG
* Fixed bug in the wait process of `co::exec`
* Coroutine nesting detection
+ Add Coroutine defer feature
* Fixed max_connection can not be bigger than 10k bug (#2134)
* Fixed prepare bug after query 'CALL' (#2132)
* Fixed sendfile EAGAIN bug in MacOS (60023b7)
* Improve onReceive/onPacket callback check
* Use fast call info cache always
* Remove cidmap, cid will never be reused again
* Fixed socket construct failed core dump
* Fixed process wait bug
* Fixed swServer_signal_handler (#2145)
* Fixed typo on Swoole\\MsgQueue::destroy
* Fixed http2 huge headers bug
* Fixed hiredis error msg buffer overflow (#2149)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -885,6 +890,7 @@
<file role="test" name="tests/swoole_http2_client_coro/wrong_headers.phpt" />
<file role="test" name="tests/swoole_http2_server/big_data.phpt" />
<file role="test" name="tests/swoole_http2_server/compression.phpt" />
<file role="test" name="tests/swoole_http2_server/huge_headers.phpt" />
<file role="test" name="tests/swoole_http2_server/nghttp2_big_data.phpt" />
<file role="test" name="tests/swoole_http2_server/no_compression.phpt" />
<file role="test" name="tests/swoole_http_client/204.phpt" />
Expand Down Expand Up @@ -1106,7 +1112,6 @@
<file role="test" name="tests/swoole_runtime/file_hook/read.phpt" />
<file role="test" name="tests/swoole_runtime/gethostbyname.phpt" />
<file role="test" name="tests/swoole_runtime/pdo.phpt" />
<file role="test" name="tests/swoole_runtime/pdo_task.phpt" />
<file role="test" name="tests/swoole_runtime/sento.phpt" />
<file role="test" name="tests/swoole_runtime/sleep.phpt" />
<file role="test" name="tests/swoole_runtime/ssl_client.phpt" />
Expand Down Expand Up @@ -1162,6 +1167,8 @@
<file role="test" name="tests/swoole_server/heartbeat.phpt" />
<file role="test" name="tests/swoole_server/heartbeat_true.phpt" />
<file role="test" name="tests/swoole_server/heartbeat_with_base.phpt" />
<file role="test" name="tests/swoole_server/kill_user_process_01.phpt" />
<file role="test" name="tests/swoole_server/kill_user_process_02.phpt" />
<file role="test" name="tests/swoole_server/kill_worker_01.phpt" />
<file role="test" name="tests/swoole_server/kill_worker_02.phpt" />
<file role="test" name="tests/swoole_server/length_protocol.phpt" />
Expand All @@ -1186,6 +1193,7 @@
<file role="test" name="tests/swoole_server/task/kill_01.phpt" />
<file role="test" name="tests/swoole_server/task/kill_02.phpt" />
<file role="test" name="tests/swoole_server/task/kill_task_worker_02.phpt" />
<file role="test" name="tests/swoole_server/task/task_async.phpt" />
<file role="test" name="tests/swoole_server/task/task_callback.phpt" />
<file role="test" name="tests/swoole_server/task/task_co.phpt" />
<file role="test" name="tests/swoole_server/task/task_ipc_mode_2.phpt" />
Expand Down

0 comments on commit 707ab3b

Please sign in to comment.