Skip to content

Commit

Permalink
Update version for Swoole 4.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
twose committed May 16, 2019
1 parent 90bf49d commit 7edcbb5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 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.3.3)
SET(SWOOLE_VERSION 4.3.4)
SET(SWOOLE_CLFLAGS pthread rt dl ssl crypt crypto)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
Expand Down
6 changes: 3 additions & 3 deletions include/swoole.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ int clock_gettime(clock_id_t which_clock, struct timespec *t);

#define SWOOLE_MAJOR_VERSION 4
#define SWOOLE_MINOR_VERSION 3
#define SWOOLE_RELEASE_VERSION 3
#define SWOOLE_RELEASE_VERSION 4
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.3.3"
#define SWOOLE_VERSION_ID 40303
#define SWOOLE_VERSION "4.3.4"
#define SWOOLE_VERSION_ID 40304
#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
17 changes: 9 additions & 8 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>2019-04-19</date>
<time>12:00:00</time>
<date>2019-05-16</date>
<time>20:00:00</time>
<version>
<release>4.3.3</release>
<release>4.3.4</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -50,11 +50,11 @@
<notes>
Fixed
---
* Fixed Http2 ping frame bug (0f074a61) (371d0b86) (e28ed13c) (@twose) (@shiguangqi)
* Fixed OSX signal bug (6d06a2c2) (6b66f56c) (@twose)
* Fixed `Coroutine\Http\Client->setData` (53d9d1ac) (@twose)
* Remove HAVE_IPV6 (3effad3c) (@matyhtf)
* PHP7.4 compatibility (#2506) (@twose)
* Fixed SSL certificate configuration failure (#2573) (@twose)
* Fixed onReceive callback null pointer (#2568) (@twose)
* Fixed ssl->ciphers null pointer (#2553) (@matyhtf)
* Fixed document_root can't be a relative path (#2513) (@windrunner)
* Fixed HTTP proxy that does not need to handshake (16ea176f) (@matyhtf)
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -1026,6 +1026,7 @@
<file role="test" name="tests/swoole_http_server/send_yield.phpt" />
<file role="test" name="tests/swoole_http_server/sendfile.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler.phpt" />
<file role="test" name="tests/swoole_http_server/static_handler/relative_path.phpt" />
<file role="test" name="tests/swoole_http_server/task/enable_coroutine.phpt" />
<file role="test" name="tests/swoole_http_server/task/enable_coroutine_with_wrong_usage.phpt" />
<file role="test" name="tests/swoole_http_server/too_many_special_chars_in_cookie.phpt" />
Expand Down
2 changes: 1 addition & 1 deletion tests/swoole_http_server/static_handler/relative_path.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
swoole_http_server: static handler with relative path
swoole_http_server/static_handler: static handler with relative path
--SKIPIF--
<?php require __DIR__ . '/../../include/skipif.inc'; ?>
--FILE--
Expand Down

0 comments on commit 7edcbb5

Please sign in to comment.