Skip to content

Commit 5c53143

Browse files
committed
release candidate v0.1.12
1 parent 4080fa5 commit 5c53143

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/http-server/server/install-dd-trace-cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55

66
# Adjust for the latest release.
77
# See <https://github.com/DataDog/dd-trace-cpp/releases/latest>.
8-
VERSION_TAG=v0.1.10
8+
VERSION_TAG=v0.1.12
99

1010
cd /tmp
1111
git clone --branch "$VERSION_TAG" 'https://github.com/datadog/dd-trace-cpp'

src/datadog/version.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace datadog {
44
namespace tracing {
55

6-
#define VERSION "v0.1.11"
6+
#define VERSION "v0.1.12"
77

88
const char* const tracer_version = VERSION;
99
const char* const tracer_version_string = "[dd-trace-cpp version " VERSION "]";

src/datadog/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
namespace datadog {
66
namespace tracing {
77

8-
// The release version at or before this code revision, e.g. "v0.1.1".
8+
// The release version at or before this code revision, e.g. "v0.1.12".
99
// That is, this code is at least as recent as `tracer_version`, but may be
1010
// more recent.
1111
extern const char *const tracer_version;
1212

1313
// A string literal that contains `tracer_version` but also is easier to `grep`
1414
// from the output of the `strings` command line utility, e.g. "[dd-trace-cpp
15-
// version v0.1.1]".
15+
// version v0.1.12]".
1616
extern const char *const tracer_version_string;
1717

1818
} // namespace tracing

0 commit comments

Comments
 (0)