Skip to content

Commit 6f65c3e

Browse files
authored
[RELEASE] Release opentelemetry-cpp 1.28.0 (#4233)
1 parent 5983061 commit 6f65c3e

7 files changed

Lines changed: 309 additions & 87 deletions

File tree

CHANGELOG.md

Lines changed: 301 additions & 79 deletions
Large diffs are not rendered by default.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20.0")
1010
endif()
1111

1212
set(OPENTELEMETRY_VERSION_NUMBER "1.28.0")
13-
set(OPENTELEMETRY_VERSION_SUFFIX "-dev")
13+
set(OPENTELEMETRY_VERSION_SUFFIX "")
1414
set(OPENTELEMETRY_VERSION
1515
"${OPENTELEMETRY_VERSION_NUMBER}${OPENTELEMETRY_VERSION_SUFFIX}")
1616

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
module(
55
name = "opentelemetry-cpp",
6-
version = "1.28.0-dev",
6+
version = "1.28.0",
77
compatibility_level = 0,
88
repo_name = "io_opentelemetry_cpp",
99
)

api/include/opentelemetry/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#endif
1313

1414
// NOLINTBEGIN(cppcoreguidelines-macro-to-enum)
15-
#define OPENTELEMETRY_VERSION "1.28.0-dev"
15+
#define OPENTELEMETRY_VERSION "1.28.0"
1616
#define OPENTELEMETRY_VERSION_MAJOR 1
1717
#define OPENTELEMETRY_VERSION_MINOR 28
1818
#define OPENTELEMETRY_VERSION_PATCH 0

sdk/include/opentelemetry/sdk/version/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#pragma once
55

6-
#define OPENTELEMETRY_SDK_VERSION "1.28.0-dev"
6+
#define OPENTELEMETRY_SDK_VERSION "1.28.0"
77

88
#include "opentelemetry/version.h"
99

sdk/src/version/version.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ namespace version
1414
const int major_version = 1;
1515
const int minor_version = 28;
1616
const int patch_version = 0;
17-
const char *pre_release = "dev";
17+
const char *pre_release = "";
1818
const char *build_metadata = "none";
1919
const char *short_version = "1.28.0";
20-
const char *full_version = "1.28.0-dev";
20+
const char *full_version = "1.28.0";
2121
/**
2222
* Release date.
2323
* For published releases: YYYY-MM-DD
2424
* For -dev releases: empty string
2525
*/
26-
const char *build_date = "";
26+
const char *build_date = "2026-07-16";
2727
} // namespace version
2828
} // namespace sdk
2929
OPENTELEMETRY_END_NAMESPACE

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
github_url = "https://github.com/open-telemetry/opentelemetry-cpp"
2222

2323
[version]
24-
current = "1.28.0-dev"
24+
current = "1.28.0"
2525

2626
# Example of a semver regexp.
2727
# Make sure this matches current_version before

0 commit comments

Comments
 (0)