File tree Expand file tree Collapse file tree
api/include/opentelemetry
include/opentelemetry/sdk/version Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Increment the:
1515
1616## [ Unreleased]
1717
18+ * [ RELEASE] Bump main branch to 1.28.0-dev
19+ [ #4081 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/4081 )
20+
1821## [ 1.27.0] 2026-05-13
1922
2023* [ RELEASE] Bump main branch to 1.27.0-dev
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20.0")
99 cmake_policy (SET CMP0117 NEW )
1010endif ()
1111
12- set (OPENTELEMETRY_VERSION_NUMBER "1.27 .0" )
13- set (OPENTELEMETRY_VERSION_SUFFIX "" )
12+ set (OPENTELEMETRY_VERSION_NUMBER "1.28 .0" )
13+ set (OPENTELEMETRY_VERSION_SUFFIX "-dev " )
1414set (OPENTELEMETRY_VERSION
1515 "${OPENTELEMETRY_VERSION_NUMBER}${OPENTELEMETRY_VERSION_SUFFIX} " )
1616
Original file line number Diff line number Diff line change 33
44module (
55 name = "opentelemetry-cpp" ,
6- version = "1.27.0 " ,
6+ version = "1.28.0-dev " ,
77 compatibility_level = 0 ,
88 repo_name = "io_opentelemetry_cpp" ,
99)
Original file line number Diff line number Diff line change 1212#endif
1313
1414// NOLINTBEGIN(cppcoreguidelines-macro-to-enum)
15- #define OPENTELEMETRY_VERSION " 1.27.0 "
15+ #define OPENTELEMETRY_VERSION " 1.28.0-dev "
1616#define OPENTELEMETRY_VERSION_MAJOR 1
17- #define OPENTELEMETRY_VERSION_MINOR 27
17+ #define OPENTELEMETRY_VERSION_MINOR 28
1818#define OPENTELEMETRY_VERSION_PATCH 0
1919// NOLINTEND(cppcoreguidelines-macro-to-enum)
2020
Original file line number Diff line number Diff line change 33
44#pragma once
55
6- #define OPENTELEMETRY_SDK_VERSION " 1.27.0 "
6+ #define OPENTELEMETRY_SDK_VERSION " 1.28.0-dev "
77
88#include " opentelemetry/version.h"
99
Original file line number Diff line number Diff line change @@ -12,18 +12,18 @@ namespace sdk
1212namespace version
1313{
1414const int major_version = 1 ;
15- const int minor_version = 27 ;
15+ const int minor_version = 28 ;
1616const int patch_version = 0 ;
17- const char *pre_release = " " ;
17+ const char *pre_release = " dev " ;
1818const char *build_metadata = " none" ;
19- const char *short_version = " 1.27 .0" ;
20- const char *full_version = " 1.27.0 " ;
19+ const char *short_version = " 1.28 .0" ;
20+ const char *full_version = " 1.28.0-dev " ;
2121/* *
2222 * Release date.
2323 * For published releases: YYYY-MM-DD
2424 * For -dev releases: empty string
2525 */
26- const char *build_date = " 2026-05-13 " ;
26+ const char *build_date = " " ;
2727} // namespace version
2828} // namespace sdk
2929OPENTELEMETRY_END_NAMESPACE
Original file line number Diff line number Diff line change 2121github_url = " https://github.com/open-telemetry/opentelemetry-cpp"
2222
2323[version ]
24- current = " 1.27.0 "
24+ current = " 1.28.0-dev "
2525
2626# Example of a semver regexp.
2727# Make sure this matches current_version before
You can’t perform that action at this time.
0 commit comments