Skip to content

Commit 7edcbb5

Browse files
committed
Update version for Swoole 4.3.4
1 parent 90bf49d commit 7edcbb5

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
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.3.3)
4+
SET(SWOOLE_VERSION 4.3.4)
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")

include/swoole.h

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

8989
#define SWOOLE_MAJOR_VERSION 4
9090
#define SWOOLE_MINOR_VERSION 3
91-
#define SWOOLE_RELEASE_VERSION 3
91+
#define SWOOLE_RELEASE_VERSION 4
9292
#define SWOOLE_EXTRA_VERSION ""
93-
#define SWOOLE_VERSION "4.3.3"
94-
#define SWOOLE_VERSION_ID 40303
93+
#define SWOOLE_VERSION "4.3.4"
94+
#define SWOOLE_VERSION_ID 40304
9595
#define SWOOLE_BUG_REPORT \
9696
"A bug occurred in Swoole-v" SWOOLE_VERSION ", please report it.\n"\
9797
"The Swoole developers probably don't know about it,\n"\

package.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
<email>[email protected]</email>
3737
<active>yes</active>
3838
</developer>
39-
<date>2019-04-19</date>
40-
<time>12:00:00</time>
39+
<date>2019-05-16</date>
40+
<time>20:00:00</time>
4141
<version>
42-
<release>4.3.3</release>
42+
<release>4.3.4</release>
4343
<api>4.0</api>
4444
</version>
4545
<stability>
@@ -50,11 +50,11 @@
5050
<notes>
5151
Fixed
5252
---
53-
* Fixed Http2 ping frame bug (0f074a61) (371d0b86) (e28ed13c) (@twose) (@shiguangqi)
54-
* Fixed OSX signal bug (6d06a2c2) (6b66f56c) (@twose)
55-
* Fixed `Coroutine\Http\Client->setData` (53d9d1ac) (@twose)
56-
* Remove HAVE_IPV6 (3effad3c) (@matyhtf)
57-
* PHP7.4 compatibility (#2506) (@twose)
53+
* Fixed SSL certificate configuration failure (#2573) (@twose)
54+
* Fixed onReceive callback null pointer (#2568) (@twose)
55+
* Fixed ssl->ciphers null pointer (#2553) (@matyhtf)
56+
* Fixed document_root can't be a relative path (#2513) (@windrunner)
57+
* Fixed HTTP proxy that does not need to handshake (16ea176f) (@matyhtf)
5858
</notes>
5959
<contents>
6060
<dir name="/">
@@ -1026,6 +1026,7 @@
10261026
<file role="test" name="tests/swoole_http_server/send_yield.phpt" />
10271027
<file role="test" name="tests/swoole_http_server/sendfile.phpt" />
10281028
<file role="test" name="tests/swoole_http_server/static_handler.phpt" />
1029+
<file role="test" name="tests/swoole_http_server/static_handler/relative_path.phpt" />
10291030
<file role="test" name="tests/swoole_http_server/task/enable_coroutine.phpt" />
10301031
<file role="test" name="tests/swoole_http_server/task/enable_coroutine_with_wrong_usage.phpt" />
10311032
<file role="test" name="tests/swoole_http_server/too_many_special_chars_in_cookie.phpt" />

tests/swoole_http_server/static_handler/relative_path.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
swoole_http_server: static handler with relative path
2+
swoole_http_server/static_handler: static handler with relative path
33
--SKIPIF--
44
<?php require __DIR__ . '/../../include/skipif.inc'; ?>
55
--FILE--

0 commit comments

Comments
 (0)