diff --git a/Dependencies.txt b/Dependencies.txt index 5590f3d923..1ed955cf92 100644 --- a/Dependencies.txt +++ b/Dependencies.txt @@ -1,5 +1,5 @@ Protobuf=v25.2 -abseil-cpp=20240116.0 +abseil-cpp=20240116.1 Cbc=2.10.7 Cgl=0.60.5 Clp=1.17.7 diff --git a/WORKSPACE b/WORKSPACE index 027202306f..9181859ecc 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -88,8 +88,8 @@ git_repository( ## Abseil-cpp git_repository( name = "com_google_absl", - tag = "20240116.0", - patches = ["//patches:abseil-cpp-20240116.0.patch"], + tag = "20240116.1", + patches = ["//patches:abseil-cpp-20240116.1.patch"], patch_args = ["-p1"], remote = "https://github.com/abseil/abseil-cpp.git", ) diff --git a/cmake/dependencies/CMakeLists.txt b/cmake/dependencies/CMakeLists.txt index 09051f2d87..d51e48128e 100644 --- a/cmake/dependencies/CMakeLists.txt +++ b/cmake/dependencies/CMakeLists.txt @@ -83,8 +83,8 @@ if(BUILD_absl) FetchContent_Declare( abseil-cpp GIT_REPOSITORY "https://github.com/abseil/abseil-cpp.git" - GIT_TAG "20240116.0" - PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/abseil-cpp-20240116.0.patch" + GIT_TAG "20240116.1" + PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/abseil-cpp-20240116.1.patch" ) FetchContent_MakeAvailable(abseil-cpp) list(POP_BACK CMAKE_MESSAGE_INDENT) diff --git a/patches/abseil-cpp-20240116.0.patch b/patches/abseil-cpp-20240116.1.patch similarity index 100% rename from patches/abseil-cpp-20240116.0.patch rename to patches/abseil-cpp-20240116.1.patch