Skip to content

Commit a799f4a

Browse files
authored
Patch release v1.14.2 (#2563)
1 parent 719c60f commit a799f4a

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

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

1616
## [Unreleased]
1717

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+
1823
## [1.14.1] 2024-02-23
1924

2025
* [SDK] Restore Recordable API compatibility with versions < 1.14.0

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.1"
13+
#define OPENTELEMETRY_VERSION "1.14.2"
1414
#define OPENTELEMETRY_VERSION_MAJOR 1
1515
#define OPENTELEMETRY_VERSION_MINOR 14
16-
#define OPENTELEMETRY_VERSION_PATCH 1
16+
#define OPENTELEMETRY_VERSION_PATCH 2
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.1"
27+
release = "1.14.2"
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.1"
8+
#define OPENTELEMETRY_SDK_VERSION "1.14.2"
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 = 1;
16+
const int patch_version = 2;
1717
const char *pre_release = "NONE";
1818
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";
2222
} // namespace version
2323
} // namespace sdk
2424
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)