From 2918b4e9ce79a71ae575383a4f1b184b0ce67a79 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Tue, 8 Mar 2022 11:37:50 +0100 Subject: [PATCH] updated to libuv v1.44 --- CMakeLists.txt | 4 ++-- conanfile.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 01c0ddba..29349bac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ endif() # Project configuration # set(UVW_VERSION_MAJOR 2) -set(UVW_VERSION_MINOR 11) +set(UVW_VERSION_MINOR 12) set(UVW_VERSION_PATCH 0) project( @@ -68,7 +68,7 @@ endif() # Required minimal libuv version -set(LIBUV_VERSION 1.43.0) +set(LIBUV_VERSION 1.44.0) function(fetch_libuv) if (FETCH_LIBUV) diff --git a/conanfile.py b/conanfile.py index ba5ff2e8..d00f804d 100644 --- a/conanfile.py +++ b/conanfile.py @@ -14,7 +14,7 @@ class UVWConan(ConanFile): exports = "LICENSE" exports_sources = "src/*" no_copy_source = True - requires = "libuv/1.43.0@bincrafters/stable" + requires = "libuv/1.44.0@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses")