File tree Expand file tree Collapse file tree 5 files changed +13
-8
lines changed
api/include/opentelemetry
include/opentelemetry/sdk/version Expand file tree Collapse file tree 5 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ Increment the:
15
15
16
16
## [ Unreleased]
17
17
18
+ ## [ 1.14.2] 2024-02-27
19
+
20
+ * [ SDK] Fix observable attributes drop
21
+ [ #2557 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/2557 )
22
+
18
23
## [ 1.14.1] 2024-02-23
19
24
20
25
* [ SDK] Restore Recordable API compatibility with versions < 1.14.0
Original file line number Diff line number Diff line change 10
10
# define OPENTELEMETRY_ABI_VERSION_NO 1
11
11
#endif
12
12
13
- #define OPENTELEMETRY_VERSION " 1.14.1 "
13
+ #define OPENTELEMETRY_VERSION " 1.14.2 "
14
14
#define OPENTELEMETRY_VERSION_MAJOR 1
15
15
#define OPENTELEMETRY_VERSION_MINOR 14
16
- #define OPENTELEMETRY_VERSION_PATCH 1
16
+ #define OPENTELEMETRY_VERSION_PATCH 2
17
17
18
18
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY (OPENTELEMETRY_ABI_VERSION_NO)
19
19
Original file line number Diff line number Diff line change 24
24
author = 'OpenTelemetry authors'
25
25
26
26
# The full version, including alpha/beta/rc tags
27
- release = "1.14.1 "
27
+ release = "1.14.2 "
28
28
29
29
# Run sphinx on subprojects and copy output
30
30
# -----------------------------------------
Original file line number Diff line number Diff line change 5
5
6
6
#include " opentelemetry/detail/preprocessor.h"
7
7
8
- #define OPENTELEMETRY_SDK_VERSION " 1.14.1 "
8
+ #define OPENTELEMETRY_SDK_VERSION " 1.14.2 "
9
9
10
10
#include " opentelemetry/version.h"
11
11
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ namespace version
13
13
{
14
14
const int major_version = 1 ;
15
15
const int minor_version = 14 ;
16
- const int patch_version = 1 ;
16
+ const int patch_version = 2 ;
17
17
const char *pre_release = " NONE" ;
18
18
const char *build_metadata = " NONE" ;
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" ;
19
+ const char *short_version = " 1.14.2 " ;
20
+ const char *full_version = " 1.14.2 -NONE-NONE" ;
21
+ const char *build_date = " Tue Feb 27 18:25:51 UTC 2024" ;
22
22
} // namespace version
23
23
} // namespace sdk
24
24
OPENTELEMETRY_END_NAMESPACE
You can’t perform that action at this time.
0 commit comments