diff --git a/CMakeLists.txt b/CMakeLists.txt index eb6561e8..1ad02674 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ endif() # Project configuration # -project(uvw VERSION 1.17.1) +project(uvw VERSION 1.18.0) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Debug) diff --git a/cmake/in/deps.in b/cmake/in/deps.in index 08f87fca..63748866 100644 --- a/cmake/in/deps.in +++ b/cmake/in/deps.in @@ -17,7 +17,7 @@ ExternalProject_Add( ExternalProject_Add( libuv GIT_REPOSITORY https://github.com/libuv/libuv.git - GIT_TAG v1.29.1 + GIT_TAG v1.30.0 SOURCE_DIR @LIBUV_DEPS_DIR@ CONFIGURE_COMMAND "" BUILD_COMMAND "" diff --git a/conanfile.py b/conanfile.py index 5fe67d5f..85a59735 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,7 +14,7 @@ class UVMConan(ConanFile): exports = "LICENSE" exports_sources = "src/*" no_copy_source = True - requires = "libuv/1.28.0@bincrafters/stable" + requires = "libuv/1.30.0@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses") diff --git a/test/uvw/tcp.cpp b/test/uvw/tcp.cpp index 51894586..c0a1bcee 100644 --- a/test/uvw/tcp.cpp +++ b/test/uvw/tcp.cpp @@ -70,7 +70,7 @@ TEST(TCP, SockPeer) { server->on([](const auto &, auto &) { FAIL(); }); client->on([](const auto &, auto &) { FAIL(); }); - server->once([&address, port](const uvw::ListenEvent &, uvw::TCPHandle &handle) { + server->once([&address](const uvw::ListenEvent &, uvw::TCPHandle &handle) { std::shared_ptr socket = handle.loop().resource(); socket->on([](const uvw::ErrorEvent &, uvw::TCPHandle &) { FAIL(); });