Skip to content

Commit 6ce60d4

Browse files
committed
now working with libuv v1.30.x (close skypjack#153)
1 parent 6852f49 commit 6ce60d4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ endif()
1616
# Project configuration
1717
#
1818

19-
project(uvw VERSION 1.17.1)
19+
project(uvw VERSION 1.18.0)
2020

2121
if(NOT CMAKE_BUILD_TYPE)
2222
set(CMAKE_BUILD_TYPE Debug)

cmake/in/deps.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ExternalProject_Add(
1717
ExternalProject_Add(
1818
libuv
1919
GIT_REPOSITORY https://github.com/libuv/libuv.git
20-
GIT_TAG v1.29.1
20+
GIT_TAG v1.30.0
2121
SOURCE_DIR @LIBUV_DEPS_DIR@
2222
CONFIGURE_COMMAND ""
2323
BUILD_COMMAND ""

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class UVMConan(ConanFile):
1414
exports = "LICENSE"
1515
exports_sources = "src/*"
1616
no_copy_source = True
17-
requires = "libuv/1.28.0@bincrafters/stable"
17+
requires = "libuv/1.30.0@bincrafters/stable"
1818

1919
def package(self):
2020
self.copy(pattern="LICENSE", dst="licenses")

test/uvw/tcp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ TEST(TCP, SockPeer) {
7070
server->on<uvw::ErrorEvent>([](const auto &, auto &) { FAIL(); });
7171
client->on<uvw::ErrorEvent>([](const auto &, auto &) { FAIL(); });
7272

73-
server->once<uvw::ListenEvent>([&address, port](const uvw::ListenEvent &, uvw::TCPHandle &handle) {
73+
server->once<uvw::ListenEvent>([&address](const uvw::ListenEvent &, uvw::TCPHandle &handle) {
7474
std::shared_ptr<uvw::TCPHandle> socket = handle.loop().resource<uvw::TCPHandle>();
7575

7676
socket->on<uvw::ErrorEvent>([](const uvw::ErrorEvent &, uvw::TCPHandle &) { FAIL(); });

0 commit comments

Comments
 (0)