From 7cab57996dc0f0133e96fca055d330db345881ee Mon Sep 17 00:00:00 2001 From: Sebastian Messmer Date: Fri, 2 Apr 2021 14:38:08 -0700 Subject: [PATCH] Update spdlog to 1.8.5 --- .circleci/config.yml | 6 +++--- ChangeLog.txt | 2 +- conanfile.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 002d291e..546a55da 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -130,8 +130,8 @@ references: echo Download spdlog cd ~ - wget https://github.com/gabime/spdlog/archive/v1.8.2.tar.gz -O spdlog.tar.gz - if [ $(sha512sum spdlog.tar.gz | awk '{print $1;}') == "7a0a2353a10187cc314253b366fc46be8f9fe2480d2cbac3a96a8e6825ee4b62b0a5ebb3add2b22b5d7ca8fe6dddd963926603e5296e3431c0a4f7ac42beda7f" ]; then + wget https://github.com/gabime/spdlog/archive/v1.8.5.tar.gz -O spdlog.tar.gz + if [ $(sha512sum spdlog.tar.gz | awk '{print $1;}') == "77cc9df0c40bbdbfe1f3e5818dccf121918bfceac28f2608f39e5bf944968b7e8e24a6fc29f01bc58a9bae41b8892d49cfb59c196935ec9868884320b50f130c" ]; then echo Correct sha512sum else echo Wrong sha512sum @@ -140,7 +140,7 @@ references: fi tar -xvf spdlog.tar.gz rm spdlog.tar.gz - cd spdlog-1.8.2 + cd spdlog-1.8.5 echo Install spdlog mkdir build diff --git a/ChangeLog.txt b/ChangeLog.txt index 493179c3..7fd4dbe3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -28,7 +28,7 @@ New features: * Add a --create-missing-basedir and --create-missing-mountpoint flag to create the base directory and mount directory respectively, if they don't exist, skipping the confirmation prompt. Other: -* Updated to spdlog 1.8.2 +* Updated to spdlog 1.8.5 * Updated to ranges-v3 0.11.0 Version 0.10.3 diff --git a/conanfile.py b/conanfile.py index 0c5ba2fb..37a243a1 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ class CryFSConan(ConanFile): settings = "os", "compiler", "build_type", "arch" requires = [ "range-v3/0.11.0@ericniebler/stable", - "spdlog/1.8.2", + "spdlog/1.8.5", ] generators = "cmake" default_options = {