Skip to content

Commit 116f438

Browse files
authored
[RELEASE] Bump main branch to 1.24-dev (#3662)
1 parent ea1f0d6 commit 116f438

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20.0")
1515
cmake_policy(SET CMP0117 NEW)
1616
endif()
1717

18-
set(OPENTELEMETRY_VERSION_NUMBER "1.23.0")
19-
set(OPENTELEMETRY_VERSION_SUFFIX "")
18+
set(OPENTELEMETRY_VERSION_NUMBER "1.24.0")
19+
set(OPENTELEMETRY_VERSION_SUFFIX "-dev")
2020
set(OPENTELEMETRY_VERSION
2121
"${OPENTELEMETRY_VERSION_NUMBER}${OPENTELEMETRY_VERSION_SUFFIX}")
2222

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.23.0",
6+
version = "1.24.0-dev",
77
compatibility_level = 0,
88
repo_name = "io_opentelemetry_cpp",
99
)

api/include/opentelemetry/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
# define OPENTELEMETRY_ABI_VERSION_NO 1
1111
#endif
1212

13-
#define OPENTELEMETRY_VERSION "1.23.0"
13+
#define OPENTELEMETRY_VERSION "1.24.0-dev"
1414
#define OPENTELEMETRY_VERSION_MAJOR 1
15-
#define OPENTELEMETRY_VERSION_MINOR 23
15+
#define OPENTELEMETRY_VERSION_MINOR 24
1616
#define OPENTELEMETRY_VERSION_PATCH 0
1717

1818
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)

functional/configuration/shelltests/kitchen-sink.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ SDK CREATED
1919
severity_text : DEBUG
2020
body : body
2121
resource :
22-
telemetry.sdk.version: 1.23.0
22+
telemetry.sdk.version: 1.24.0-dev
2323
service.version: 1.0.0
2424
double_array_key: [1.1,2.2]
2525
double_key: 1.1

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.23.0"
6+
#define OPENTELEMETRY_SDK_VERSION "1.24.0-dev"
77

88
#include "opentelemetry/version.h"
99

sdk/src/version/version.cc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ namespace sdk
1212
namespace version
1313
{
1414
const int major_version = 1;
15-
const int minor_version = 23;
15+
const int minor_version = 24;
1616
const int patch_version = 0;
17-
const char *pre_release = "";
17+
const char *pre_release = "dev";
1818
const char *build_metadata = "none";
19-
const char *short_version = "1.23.0";
20-
const char *full_version = "1.23.0";
21-
const char *build_date = "Thu Sep 25 07:47:31 PM UTC 2025";
19+
const char *short_version = "1.24.0";
20+
const char *full_version = "1.24.0-dev";
21+
const char *build_date = "MAIN BRANCH";
2222
} // namespace version
2323
} // namespace sdk
2424
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.23.0"
24+
current = "1.24.0-dev"
2525

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

0 commit comments

Comments
 (0)