File tree Expand file tree Collapse file tree 5 files changed +30
-8
lines changed
api/include/opentelemetry
include/opentelemetry/sdk/version Expand file tree Collapse file tree 5 files changed +30
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 2424author = '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# -----------------------------------------
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ namespace version
1313{
1414const int major_version = 1 ;
1515const int minor_version = 14 ;
16- const int patch_version = 0 ;
16+ const int patch_version = 1 ;
1717const char *pre_release = " NONE" ;
1818const 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
2424OPENTELEMETRY_END_NAMESPACE
You can’t perform that action at this time.
0 commit comments