Skip to content

Commit

Permalink
Version 4.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
matyhtf committed Jul 8, 2022
1 parent e17b976 commit f0cf6b9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 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.8.10)
set(SWOOLE_VERSION 4.8.11)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wall -g")
Expand Down
6 changes: 3 additions & 3 deletions include/swoole_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@

#define SWOOLE_MAJOR_VERSION 4
#define SWOOLE_MINOR_VERSION 8
#define SWOOLE_RELEASE_VERSION 10
#define SWOOLE_RELEASE_VERSION 11
#define SWOOLE_EXTRA_VERSION ""
#define SWOOLE_VERSION "4.8.10"
#define SWOOLE_VERSION_ID 40810
#define SWOOLE_VERSION "4.8.11"
#define SWOOLE_VERSION_ID 40811
#define SWOOLE_API_VERSION_ID 0x202109a

#define SWOOLE_BUG_REPORT \
Expand Down
12 changes: 8 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<date>2022-05-06</date>
<time>18:00:00</time>
<version>
<release>4.8.10</release>
<release>4.8.11</release>
<api>4.0</api>
</version>
<stability>
Expand All @@ -60,9 +60,13 @@
</stability>
<license uri="http://www.apache.org/licenses/LICENSE-2.0.html">Apache2.0</license>
<notes>
- Reset value to 1ms when stream_select timeout is less than 1ms
- Fixed #4693
- Fixed #4699
- Supports intel CET
- Fixed #4712
- Fixed crash issue when pdo persistent connection throws exception
- Added Server::$ssl property
- Added enable-cares option to pecl
- Refactor multipart_parser
- Fixed incorrect error message in Server::close()
</notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion tests/swoole_http_server/form_data_1.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
swoole_http_server_coro: form data 1
swoole_http_server: form data 1
--SKIPIF--
<?php require __DIR__ . '/../include/skipif.inc'; ?>
--FILE--
Expand Down
3 changes: 2 additions & 1 deletion tests/swoole_runtime/stream_copy_to_stream_socket.phpt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
--TEST--
stream_copy_to_stream() with socket as $source
swoole_runtime: stream_copy_to_stream() with socket as $source
--SKIPIF--
<?php require __DIR__ . '/../include/skipif.inc'; ?>
<?php
$sockets = @stream_socket_pair(STREAM_PF_UNIX, STREAM_SOCK_STREAM, 0);
if (!$sockets) die("skip stream_socket_pair");
Expand Down

0 comments on commit f0cf6b9

Please sign in to comment.