Skip to content

Commit

Permalink
release candidate v0.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dgoffredo committed Nov 17, 2023
1 parent 4080fa5 commit 5c53143
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/http-server/server/install-dd-trace-cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

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

cd /tmp
git clone --branch "$VERSION_TAG" 'https://github.com/datadog/dd-trace-cpp'
Expand Down
2 changes: 1 addition & 1 deletion src/datadog/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace datadog {
namespace tracing {

#define VERSION "v0.1.11"
#define VERSION "v0.1.12"

const char* const tracer_version = VERSION;
const char* const tracer_version_string = "[dd-trace-cpp version " VERSION "]";
Expand Down
4 changes: 2 additions & 2 deletions src/datadog/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
namespace datadog {
namespace tracing {

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

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

} // namespace tracing
Expand Down

0 comments on commit 5c53143

Please sign in to comment.