diff --git a/CMakeLists.txt b/CMakeLists.txt index 5caa7c6d0c..ddc8d9cd83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,8 +15,8 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.20.0") cmake_policy(SET CMP0117 NEW) endif() -set(OPENTELEMETRY_VERSION_NUMBER "1.23.0") -set(OPENTELEMETRY_VERSION_SUFFIX "") +set(OPENTELEMETRY_VERSION_NUMBER "1.24.0") +set(OPENTELEMETRY_VERSION_SUFFIX "-dev") set(OPENTELEMETRY_VERSION "${OPENTELEMETRY_VERSION_NUMBER}${OPENTELEMETRY_VERSION_SUFFIX}") diff --git a/MODULE.bazel b/MODULE.bazel index d147305b13..3200237c6a 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -3,7 +3,7 @@ module( name = "opentelemetry-cpp", - version = "1.23.0", + version = "1.24.0-dev", compatibility_level = 0, repo_name = "io_opentelemetry_cpp", ) diff --git a/api/include/opentelemetry/version.h b/api/include/opentelemetry/version.h index e8747af9a1..6a67883d92 100644 --- a/api/include/opentelemetry/version.h +++ b/api/include/opentelemetry/version.h @@ -10,9 +10,9 @@ # define OPENTELEMETRY_ABI_VERSION_NO 1 #endif -#define OPENTELEMETRY_VERSION "1.23.0" +#define OPENTELEMETRY_VERSION "1.24.0-dev" #define OPENTELEMETRY_VERSION_MAJOR 1 -#define OPENTELEMETRY_VERSION_MINOR 23 +#define OPENTELEMETRY_VERSION_MINOR 24 #define OPENTELEMETRY_VERSION_PATCH 0 #define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO) diff --git a/functional/configuration/shelltests/kitchen-sink.test b/functional/configuration/shelltests/kitchen-sink.test index 15c74c7065..b4e3c1f66d 100644 --- a/functional/configuration/shelltests/kitchen-sink.test +++ b/functional/configuration/shelltests/kitchen-sink.test @@ -19,7 +19,7 @@ SDK CREATED severity_text : DEBUG body : body resource : - telemetry.sdk.version: 1.23.0 + telemetry.sdk.version: 1.24.0-dev service.version: 1.0.0 double_array_key: [1.1,2.2] double_key: 1.1 diff --git a/sdk/include/opentelemetry/sdk/version/version.h b/sdk/include/opentelemetry/sdk/version/version.h index a5045807a5..21ec411d4d 100644 --- a/sdk/include/opentelemetry/sdk/version/version.h +++ b/sdk/include/opentelemetry/sdk/version/version.h @@ -3,7 +3,7 @@ #pragma once -#define OPENTELEMETRY_SDK_VERSION "1.23.0" +#define OPENTELEMETRY_SDK_VERSION "1.24.0-dev" #include "opentelemetry/version.h" diff --git a/sdk/src/version/version.cc b/sdk/src/version/version.cc index fb343dc0f5..df601e3818 100644 --- a/sdk/src/version/version.cc +++ b/sdk/src/version/version.cc @@ -12,13 +12,13 @@ namespace sdk namespace version { const int major_version = 1; -const int minor_version = 23; +const int minor_version = 24; const int patch_version = 0; -const char *pre_release = ""; +const char *pre_release = "dev"; const char *build_metadata = "none"; -const char *short_version = "1.23.0"; -const char *full_version = "1.23.0"; -const char *build_date = "Thu Sep 25 07:47:31 PM UTC 2025"; +const char *short_version = "1.24.0"; +const char *full_version = "1.24.0-dev"; +const char *build_date = "MAIN BRANCH"; } // namespace version } // namespace sdk OPENTELEMETRY_END_NAMESPACE diff --git a/tbump.toml b/tbump.toml index 346c1a8649..e7e9c47ef2 100644 --- a/tbump.toml +++ b/tbump.toml @@ -21,7 +21,7 @@ github_url = "https://github.com/open-telemetry/opentelemetry-cpp" [version] -current = "1.23.0" +current = "1.24.0-dev" # Example of a semver regexp. # Make sure this matches current_version before