Skip to content

Commit

Permalink
Bump dependencies to latest release versions
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Jan 12, 2024
1 parent c8b734c commit 3458f1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ if(NOT nlohmann_json_FOUND)
FetchContent_Declare(
nlohmann_json
GIT_REPOSITORY https://github.com/nlohmann/json.git
GIT_TAG v3.11.2
GIT_TAG v3.11.3
)

FetchContent_MakeAvailable(nlohmann_json)
Expand All @@ -99,7 +99,7 @@ if(NOT spdlog_FOUND)
FetchContent_Declare(
spdlog
GIT_REPOSITORY https://github.com/gabime/spdlog.git
GIT_TAG v1.12.0
GIT_TAG v1.13.0
)

FetchContent_MakeAvailable(spdlog)
Expand All @@ -115,7 +115,7 @@ if(CCT_BUILD_PROMETHEUS_FROM_SRC)
FetchContent_Declare(
prometheus-cpp
GIT_REPOSITORY https://github.com/jupp0r/prometheus-cpp.git
GIT_TAG v1.1.0
GIT_TAG v1.2.0
)

FetchContent_MakeAvailable(prometheus-cpp)
Expand Down
2 changes: 1 addition & 1 deletion alpine.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi stage build to separate docker build image from executable (to make the latter smaller)
FROM alpine:3.18.4 AS build
FROM alpine:3.19.0 AS build

# Install base & build dependencies, needed certificates for curl to work with https
RUN apk add --update --upgrade --no-cache g++ libc-dev curl-dev cmake ninja git ca-certificates
Expand Down
2 changes: 1 addition & 1 deletion src/api/exchanges/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ include(FetchContent)
FetchContent_Declare(
jwt-cpp
GIT_REPOSITORY https://github.com/Thalhammer/jwt-cpp
GIT_TAG master
GIT_TAG v0.7.0
)

set(JWT_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
Expand Down

0 comments on commit 3458f1e

Please sign in to comment.