summaryrefslogtreecommitdiffstats
path: root/contrib/libs/opentelemetry-cpp/sdk/src/version/version.cc
blob: a7b078b9798235a20486db98859ef919549eb835 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

// Do not edit versions directly.
// See file tbump.toml

#include "opentelemetry/sdk/version/version.h"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace sdk
{
namespace version
{
const int major_version    = 1;
const int minor_version    = 27;
const int patch_version    = 0;
const char *pre_release    = "";
const char *build_metadata = "none";
const char *short_version  = "1.27.0";
const char *full_version   = "1.27.0";
/**
 * Release date.
 * For published releases: YYYY-MM-DD
 * For -dev releases: empty string
 */
const char *build_date = "2026-05-13";
}  // namespace version
}  // namespace sdk
OPENTELEMETRY_END_NAMESPACE