Skip to content

Commit

Permalink
Promote version 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sjanel committed Apr 22, 2023
1 parent bbcef03 commit b8b33ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/clang-format-action@v4.10.2
uses: jidicula/clang-format-action@v4.11.0
with:
check-path: "src"
fallback-style: "Google"
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15)
# cmake does not currently support version suffixes (for dev / rc releases for instance.)
# Github actions will detect if version has 'tweak' value (3 '.' in version)
# in order to avoid pushing Docker image for versions in development.
project(coincenter VERSION 3.19.0.0
project(coincenter VERSION 3.19.0
DESCRIPTION "A C++ library centralizing several crypto currencies exchanges REST API into a single all in one tool with a unified interface"
LANGUAGES CXX)

Expand Down
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Multi stage build to separate docker build image from executable (to make the latter smaller)
FROM alpine:3.17.2 AS build
FROM alpine:3.17.3 AS build

# Install base & build dependencies, needed certificates for curl to work with https
RUN apk update && \
apk upgrade && \
apk add --no-cache g++ libc-dev curl-dev cmake ninja git ca-certificates
RUN apk add --update --upgrade --no-cache g++ libc-dev curl-dev cmake ninja git ca-certificates

# Set default directory for application
WORKDIR /app
Expand Down

0 comments on commit b8b33ed

Please sign in to comment.