From a38f5452d8f3a0d2c8373a0a0ad39194f845e007 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 3 Oct 2024 09:53:46 +0200 Subject: [PATCH] build: prepare to work with libuv 1.49 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 33965488..75b23e7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,7 +68,7 @@ endif() # Required minimal libuv version -set(LIBUV_VERSION 1.48.0) +set(LIBUV_VERSION 1.49.0) function(fetch_libuv) if (FETCH_LIBUV) diff --git a/conanfile.py b/conanfile.py index 55ca13bc..9b0ee14e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -13,7 +13,7 @@ class UVWConan(ConanFile): exports = "LICENSE" exports_sources = "src/*" no_copy_source = True - requires = "libuv/1.48.0@bincrafters/stable" + requires = "libuv/1.49.0@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses")