Skip to content

Commit ba5d66a

Browse files
authored
Update version for Swoole 4.4.24 (swoole#4084)
1 parent bb5120a commit ba5d66a

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PROJECT(libswoole)
22

33
ENABLE_LANGUAGE(ASM)
4-
SET(SWOOLE_VERSION 4.4.23)
4+
SET(SWOOLE_VERSION 4.4.24)
55
SET(SWOOLE_CLFLAGS pthread rt dl ssl crypt crypto)
66
set(CMAKE_CXX_STANDARD 11)
77
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall")

include/swoole.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ int clock_gettime(clock_id_t which_clock, struct timespec *t);
102102

103103
#define SWOOLE_MAJOR_VERSION 4
104104
#define SWOOLE_MINOR_VERSION 4
105-
#define SWOOLE_RELEASE_VERSION 23
105+
#define SWOOLE_RELEASE_VERSION 24
106106
#define SWOOLE_EXTRA_VERSION ""
107-
#define SWOOLE_VERSION "4.4.23"
108-
#define SWOOLE_VERSION_ID 40423
107+
#define SWOOLE_VERSION "4.4.24"
108+
#define SWOOLE_VERSION_ID 40424
109109
#define SWOOLE_BUG_REPORT \
110110
"A bug occurred in Swoole-v" SWOOLE_VERSION ", please report it.\n"\
111111
"The Swoole developers probably don't know about it,\n"\

package.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
<email>shenzhe163@gmail.com</email>
4343
<active>yes</active>
4444
</developer>
45-
<date>2020-12-17</date>
46-
<time>16:00:00</time>
45+
<date>2021-03-09</date>
46+
<time>20:00:00</time>
4747
<version>
48-
<release>4.4.23</release>
48+
<release>4.4.24</release>
4949
<api>4.0</api>
5050
</version>
5151
<stability>
@@ -56,10 +56,7 @@
5656
<notes>
5757
Fixed
5858
---
59-
* Fixed table bugs
60-
* Fixed sync client error info (#3784)
61-
* Fixed memory overread when parse form-data boundary (#3858)
62-
* Fixed the bug of the channel, the data that has enqueue cannot be popped after the close
59+
* Fix crash when http2 client connects concurrently
6360
</notes>
6461
<contents>
6562
<dir name="/">
@@ -1000,6 +997,7 @@
1000997
<file role="test" name="tests/swoole_global/unset_property_01.phpt" />
1001998
<file role="test" name="tests/swoole_global/unset_property_02.phpt" />
1002999
<file role="test" name="tests/swoole_global/unset_property_03.phpt" />
1000+
<file role="test" name="tests/swoole_http2_client_coro/connect_twice.phpt" />
10031001
<file role="test" name="tests/swoole_http2_client_coro/cookies.phpt" />
10041002
<file role="test" name="tests/swoole_http2_client_coro/error.phpt" />
10051003
<file role="test" name="tests/swoole_http2_client_coro/goaway.phpt" />

0 commit comments

Comments
 (0)