diff --git a/examples/http-server/Dockerfile b/examples/http-server/Dockerfile index 1f055603..33c3d649 100644 --- a/examples/http-server/Dockerfile +++ b/examples/http-server/Dockerfile @@ -3,7 +3,7 @@ from ubuntu:22.04 WORKDIR /dd-trace-cpp ARG DEBIAN_FRONTEND=noninteractive -ARG BRANCH=v0.1.12 +ARG BRANCH=v0.2.0 run apt update -y \ && apt install -y g++ make git wget sed \ diff --git a/examples/http-server/server/install-dd-trace-cpp b/examples/http-server/server/install-dd-trace-cpp index 3c386802..f28abbc0 100755 --- a/examples/http-server/server/install-dd-trace-cpp +++ b/examples/http-server/server/install-dd-trace-cpp @@ -5,7 +5,7 @@ set -e # Adjust for the latest release. # See . -VERSION_TAG=v0.1.12 +VERSION_TAG=v0.2.0 cd /tmp git clone --branch "$VERSION_TAG" 'https://github.com/datadog/dd-trace-cpp' diff --git a/src/datadog/version.cpp b/src/datadog/version.cpp index e8d31059..a795d9a5 100644 --- a/src/datadog/version.cpp +++ b/src/datadog/version.cpp @@ -3,7 +3,7 @@ namespace datadog { namespace tracing { -#define VERSION "v0.1.12" +#define VERSION "v0.2.0" const char* const tracer_version = VERSION; const char* const tracer_version_string = "[dd-trace-cpp version " VERSION "]";