From ab028afec4e38e03ed1dc886a155a2edaedec5c0 Mon Sep 17 00:00:00 2001 From: David Goffredo Date: Thu, 1 Sep 2022 11:55:58 -0400 Subject: [PATCH] Tell CircleCI to build in the newly pushed 0.3.8 image. (#239) * Tell CircleCI to build in the newly pushed 0.3.8 image. The new image is based off of an older Ubuntu (18 instead of 20), and rather than use the distribution's version of cmake, the image's Dockerfile downloads a recent binary release of cmake instead. * forgot to increment version number after most recent release --- .circleci/config.yml | 2 +- src/version.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2a0db79f..2ffd9b42 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,7 +18,7 @@ default_environment: &default_environment defaults: &defaults working_directory: ~/dd-opentracing-cpp docker: - - image: datadog/docker-library:dd_opentracing_cpp_build_0_3_7 + - image: datadog/docker-library:dd_opentracing_cpp_build_0_3_8 resource_class: medium environment: *default_environment diff --git a/src/version.cpp b/src/version.cpp index 004e9193..2d6cc10a 100644 --- a/src/version.cpp +++ b/src/version.cpp @@ -5,7 +5,7 @@ namespace datadog { namespace version { -const std::string tracer_version = "v1.3.3"; +const std::string tracer_version = "v1.3.4"; const std::string cpp_version = std::to_string(__cplusplus); } // namespace version