Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
350 changes: 278 additions & 72 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20.0")
endif()

set(OPENTELEMETRY_VERSION_NUMBER "1.28.0")
set(OPENTELEMETRY_VERSION_SUFFIX "-dev")
set(OPENTELEMETRY_VERSION_SUFFIX "")
set(OPENTELEMETRY_VERSION
"${OPENTELEMETRY_VERSION_NUMBER}${OPENTELEMETRY_VERSION_SUFFIX}")

Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module(
name = "opentelemetry-cpp",
version = "1.28.0-dev",
version = "1.28.0",
compatibility_level = 0,
repo_name = "io_opentelemetry_cpp",
)
Expand Down
2 changes: 1 addition & 1 deletion api/include/opentelemetry/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#endif

// NOLINTBEGIN(cppcoreguidelines-macro-to-enum)
#define OPENTELEMETRY_VERSION "1.28.0-dev"
#define OPENTELEMETRY_VERSION "1.28.0"
#define OPENTELEMETRY_VERSION_MAJOR 1
#define OPENTELEMETRY_VERSION_MINOR 28
#define OPENTELEMETRY_VERSION_PATCH 0
Expand Down
2 changes: 1 addition & 1 deletion sdk/include/opentelemetry/sdk/version/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#pragma once

#define OPENTELEMETRY_SDK_VERSION "1.28.0-dev"
#define OPENTELEMETRY_SDK_VERSION "1.28.0"

#include "opentelemetry/version.h"

Expand Down
6 changes: 3 additions & 3 deletions sdk/src/version/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ namespace version
const int major_version = 1;
const int minor_version = 28;
const int patch_version = 0;
const char *pre_release = "dev";
const char *pre_release = "";
const char *build_metadata = "none";
const char *short_version = "1.28.0";
const char *full_version = "1.28.0-dev";
const char *full_version = "1.28.0";
/**
* Release date.
* For published releases: YYYY-MM-DD
* For -dev releases: empty string
*/
const char *build_date = "";
const char *build_date = "2026-07-12";
} // namespace version
} // namespace sdk
OPENTELEMETRY_END_NAMESPACE
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
github_url = "https://github.com/open-telemetry/opentelemetry-cpp"

[version]
current = "1.28.0-dev"
current = "1.28.0"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
Loading