Skip to content

Commit 563094b

Browse files
authored
[RELEASE] Release opentelemetry-cpp version 1.14.1 (open-telemetry#2551)
1 parent 75f34e6 commit 563094b

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,28 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.14.1] 2024-02-23
19+
20+
* [SDK] Restore Recordable API compatibility with versions < 1.14.0
21+
[#2547](https://github.com/open-telemetry/opentelemetry-cpp/pull/2547)
22+
* [DOC] Add missing CHANGELOG.
23+
[#2549](https://github.com/open-telemetry/opentelemetry-cpp/pull/2549)
24+
* [EXPORTER] Error when grpc endpoint is empty
25+
[#2507](https://github.com/open-telemetry/opentelemetry-cpp/pull/2507)
26+
* [DOC] Fix typo in benchmarks.rst
27+
[#2542](https://github.com/open-telemetry/opentelemetry-cpp/pull/2542)
28+
29+
Important changes:
30+
31+
* [SDK] Restore Recordable API compatibility with versions < 1.14.0
32+
[#2547](https://github.com/open-telemetry/opentelemetry-cpp/pull/2547)
33+
* For third party _extending_ the SDK, release 1.14.0 introduced
34+
an API breaking change compared to 1.13.0
35+
* This fix restores API (but not ABI) compatibility of
36+
release 1.14.1 with release 1.13.0.
37+
* This allows to build a third party exporter with no source code changes,
38+
for both releases 1.14.1 and 1.13.0.
39+
1840
## [1.14.0] 2024-02-16
1941

2042
* [BUILD] Add DLL build CI pipeline with CXX20

api/include/opentelemetry/version.h

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

13-
#define OPENTELEMETRY_VERSION "1.14.0"
13+
#define OPENTELEMETRY_VERSION "1.14.1"
1414
#define OPENTELEMETRY_VERSION_MAJOR 1
1515
#define OPENTELEMETRY_VERSION_MINOR 14
16-
#define OPENTELEMETRY_VERSION_PATCH 0
16+
#define OPENTELEMETRY_VERSION_PATCH 1
1717

1818
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
1919

docs/public/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = 'OpenTelemetry authors'
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = "1.14.0"
27+
release = "1.14.1"
2828

2929
# Run sphinx on subprojects and copy output
3030
# -----------------------------------------

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

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

66
#include "opentelemetry/detail/preprocessor.h"
77

8-
#define OPENTELEMETRY_SDK_VERSION "1.14.0"
8+
#define OPENTELEMETRY_SDK_VERSION "1.14.1"
99

1010
#include "opentelemetry/version.h"
1111

sdk/src/version/version.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ namespace version
1313
{
1414
const int major_version = 1;
1515
const int minor_version = 14;
16-
const int patch_version = 0;
16+
const int patch_version = 1;
1717
const char *pre_release = "NONE";
1818
const char *build_metadata = "NONE";
19-
const char *short_version = "1.14.0";
20-
const char *full_version = "1.14.0-NONE-NONE";
21-
const char *build_date = "Sat Feb 17 00:17:25 UTC 2024";
19+
const char *short_version = "1.14.1";
20+
const char *full_version = "1.14.1-NONE-NONE";
21+
const char *build_date = "Fri Feb 23 21:04:34 UTC 2024";
2222
} // namespace version
2323
} // namespace sdk
2424
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)