diff --git a/CMakeLists.txt b/CMakeLists.txt index af5990e2..80ff5af3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 ) diff --git a/conanfile.py b/conanfile.py index ab268be7..ba5ff2e8 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.42.0@bincrafters/stable" + requires = "libuv/1.43.0@bincrafters/stable" def package(self): self.copy(pattern="LICENSE", dst="licenses")