File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
2121if (NOT CMAKE_BUILD_TYPE )
2222 set (CMAKE_BUILD_TYPE Debug)
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ExternalProject_Add(
1717ExternalProject_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 ""
Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff 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 (); });
You can’t perform that action at this time.
0 commit comments