diff --git a/CMakeLists.txt b/CMakeLists.txt index 348226fc..8c4b6647 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,7 @@ endif() # Required minimal libuv version -set(LIBUV_VERSION 1.45.0) +set(LIBUV_VERSION 1.46.0) function(fetch_libuv) if (FETCH_LIBUV) diff --git a/conanfile.py b/conanfile.py index bd31f4bd..9d1b0811 100644 --- a/conanfile.py +++ b/conanfile.py @@ -2,7 +2,6 @@ # -*- coding: utf-8 -*- from conans import ConanFile - class UVWConan(ConanFile): name = "uvw" description = "Header-only, event based, tiny and easy to use libuv wrapper in modern C++" @@ -14,7 +13,7 @@ class UVWConan(ConanFile): exports = "LICENSE" exports_sources = "src/*" no_copy_source = True - requires = "libuv/1.45.0@bincrafters/stable" + requires = "libuv/1.46.0@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses")