Skip to content

Commit f0cf6b9

Browse files
committed
Version 4.8.11
1 parent e17b976 commit f0cf6b9

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
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.8.10)
4+
set(SWOOLE_VERSION 4.8.11)
55

66
set(CMAKE_CXX_STANDARD 11)
77
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")

include/swoole_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020

2121
#define SWOOLE_MAJOR_VERSION 4
2222
#define SWOOLE_MINOR_VERSION 8
23-
#define SWOOLE_RELEASE_VERSION 10
23+
#define SWOOLE_RELEASE_VERSION 11
2424
#define SWOOLE_EXTRA_VERSION ""
25-
#define SWOOLE_VERSION "4.8.10"
26-
#define SWOOLE_VERSION_ID 40810
25+
#define SWOOLE_VERSION "4.8.11"
26+
#define SWOOLE_VERSION_ID 40811
2727
#define SWOOLE_API_VERSION_ID 0x202109a
2828

2929
#define SWOOLE_BUG_REPORT \

package.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
<date>2022-05-06</date>
5252
<time>18:00:00</time>
5353
<version>
54-
<release>4.8.10</release>
54+
<release>4.8.11</release>
5555
<api>4.0</api>
5656
</version>
5757
<stability>
@@ -60,9 +60,13 @@
6060
</stability>
6161
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
6262
<notes>
63-
- Reset value to 1ms when stream_select timeout is less than 1ms
64-
- Fixed #4693
65-
- Fixed #4699
63+
- Supports intel CET
64+
- Fixed #4712
65+
- Fixed crash issue when pdo persistent connection throws exception
66+
- Added Server::$ssl property
67+
- Added enable-cares option to pecl
68+
- Refactor multipart_parser
69+
- Fixed incorrect error message in Server::close()
6670
</notes>
6771
<contents>
6872
<dir name="/">

tests/swoole_http_server/form_data_1.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_coro: form data 1
2+
swoole_http_server: form data 1
33
--SKIPIF--
44
<?php require __DIR__ . '/../include/skipif.inc'; ?>
55
--FILE--

tests/swoole_runtime/stream_copy_to_stream_socket.phpt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
--TEST--
2-
stream_copy_to_stream() with socket as $source
2+
swoole_runtime: stream_copy_to_stream() with socket as $source
33
--SKIPIF--
4+
<?php require __DIR__ . '/../include/skipif.inc'; ?>
45
<?php
56
$sockets = @stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0);
67
if (!$sockets) die("skip stream_socket_pair");

0 commit comments

Comments
 (0)