update to libuv v1.43 (it just works fortunately)

This commit is contained in:
Michele Caini 2022-01-14 09:17:02 +01:00
parent 432c55de9b
commit 86fb93d0ef
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ endif()
# Project configuration
#
set(UVW_VERSION_MAJOR 2)
set(UVW_VERSION_MINOR 10)
set(UVW_VERSION_MINOR 11)
set(UVW_VERSION_PATCH 0)
project(
@ -73,7 +73,7 @@ function(fetch_libuv)
FetchContent_Declare(
libuv
GIT_REPOSITORY https://github.com/libuv/libuv.git
GIT_TAG v1.42.0
GIT_TAG v1.43.0
GIT_SHALLOW 1
)

View File

@ -14,7 +14,7 @@ class UVWConan(ConanFile):
exports = "LICENSE"
exports_sources = "src/*"
no_copy_source = True
requires = "libuv/1.42.0@bincrafters/stable"
requires = "libuv/1.43.0@bincrafters/stable"
def package(self):
self.copy(pattern="LICENSE", dst="licenses")