From e869344fe69d72b004b2d0186a599ed005254bff Mon Sep 17 00:00:00 2001 From: MikePopoloski Date: Sun, 31 Dec 2023 21:30:29 -0500 Subject: [PATCH] Bump Catch2 and pybind11 dependency versions --- bindings/CMakeLists.txt | 2 +- conanfile.py | 4 ++-- external/CMakeLists.txt | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bindings/CMakeLists.txt b/bindings/CMakeLists.txt index b36068233..2f1162d45 100644 --- a/bindings/CMakeLists.txt +++ b/bindings/CMakeLists.txt @@ -11,7 +11,7 @@ endif() FetchContent_Declare( pybind11 GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.10.4 + GIT_TAG v2.11.1 GIT_SHALLOW ON ${find_pkg_args}) FetchContent_MakeAvailable(pybind11) diff --git a/conanfile.py b/conanfile.py index 12420eabf..e154f87af 100644 --- a/conanfile.py +++ b/conanfile.py @@ -8,8 +8,8 @@ class CompressorRecipe(ConanFile): def requirements(self): self.requires("mimalloc/2.1.2") - self.requires("catch2/3.4.0") - self.requires("pybind11/2.10.4") + self.requires("catch2/3.5.1") + self.requires("pybind11/2.11.1") self.requires("fmt/10.1.1") def layout(self): diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt index 85c180b07..ed4325b12 100644 --- a/external/CMakeLists.txt +++ b/external/CMakeLists.txt @@ -6,7 +6,7 @@ # Required minimum versions for dependencies set(fmt_min_version "10.1") set(mimalloc_min_version "2.1") -set(catch2_min_version "3.4") +set(catch2_min_version "3.5") # --- fmt lib --- set(find_pkg_args "") @@ -106,7 +106,7 @@ if(SLANG_USE_MIMALLOC) endif() if(mimalloc_FOUND) - message(STATUS "Found system mimalloc version: ${Catch2_VERSION}") + message(STATUS "Found system mimalloc version: ${mimalloc_VERSION}") else() message(STATUS "Using remote mimalloc library") if(IS_DIRECTORY "${mimalloc_SOURCE_DIR}") @@ -135,7 +135,7 @@ if(SLANG_INCLUDE_TESTS) FetchContent_Declare( Catch2 GIT_REPOSITORY https://github.com/catchorg/Catch2.git - GIT_TAG v3.4.0 + GIT_TAG v3.5.1 GIT_SHALLOW ON ${find_pkg_args}) FetchContent_MakeAvailable(Catch2)