From 3db9e8f75a4351325e1ea00e17586af2b00cf1ea Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 10 Mar 2022 11:30:41 +0100 Subject: [PATCH] update to libuv 1.44.1 --- CMakeLists.txt | 4 ++-- conanfile.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29349bac..82e98de5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,7 +17,7 @@ endif() # set(UVW_VERSION_MAJOR 2) set(UVW_VERSION_MINOR 12) -set(UVW_VERSION_PATCH 0) +set(UVW_VERSION_PATCH 1) project( uvw @@ -68,7 +68,7 @@ endif() # Required minimal libuv version -set(LIBUV_VERSION 1.44.0) +set(LIBUV_VERSION 1.44.1) function(fetch_libuv) if (FETCH_LIBUV) diff --git a/conanfile.py b/conanfile.py index d00f804d..65c1cce4 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.44.0@bincrafters/stable" + requires = "libuv/1.44.1@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses")