Skip to content

Commit

Permalink
Patch release v1.14.2 (#2563)
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb authored Feb 27, 2024
1 parent 719c60f commit a799f4a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Increment the:

## [Unreleased]

## [1.14.2] 2024-02-27

* [SDK] Fix observable attributes drop
[#2557](https://github.com/open-telemetry/opentelemetry-cpp/pull/2557)

## [1.14.1] 2024-02-23

* [SDK] Restore Recordable API compatibility with versions < 1.14.0
Expand Down
4 changes: 2 additions & 2 deletions api/include/opentelemetry/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
# define OPENTELEMETRY_ABI_VERSION_NO 1
#endif

#define OPENTELEMETRY_VERSION "1.14.1"
#define OPENTELEMETRY_VERSION "1.14.2"
#define OPENTELEMETRY_VERSION_MAJOR 1
#define OPENTELEMETRY_VERSION_MINOR 14
#define OPENTELEMETRY_VERSION_PATCH 1
#define OPENTELEMETRY_VERSION_PATCH 2

#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)

Expand Down
2 changes: 1 addition & 1 deletion docs/public/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = 'OpenTelemetry authors'

# The full version, including alpha/beta/rc tags
release = "1.14.1"
release = "1.14.2"

# Run sphinx on subprojects and copy output
# -----------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion sdk/include/opentelemetry/sdk/version/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "opentelemetry/detail/preprocessor.h"

#define OPENTELEMETRY_SDK_VERSION "1.14.1"
#define OPENTELEMETRY_SDK_VERSION "1.14.2"

#include "opentelemetry/version.h"

Expand Down
8 changes: 4 additions & 4 deletions sdk/src/version/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ namespace version
{
const int major_version = 1;
const int minor_version = 14;
const int patch_version = 1;
const int patch_version = 2;
const char *pre_release = "NONE";
const char *build_metadata = "NONE";
const char *short_version = "1.14.1";
const char *full_version = "1.14.1-NONE-NONE";
const char *build_date = "Fri Feb 23 21:04:34 UTC 2024";
const char *short_version = "1.14.2";
const char *full_version = "1.14.2-NONE-NONE";
const char *build_date = "Tue Feb 27 18:25:51 UTC 2024";
} // namespace version
} // namespace sdk
OPENTELEMETRY_END_NAMESPACE

1 comment on commit a799f4a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'OpenTelemetry-cpp sdk Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: a799f4a Previous: 719c60f Ratio
BM_BaselineBuffer/2 10328241.109848022 ns/iter 3120359.79018381 ns/iter 3.31
BM_BaselineBuffer/4 12876977.920532227 ns/iter 2245260.648708607 ns/iter 5.74
BM_LockFreeBuffer/2 9273004.531860352 ns/iter 1164885.7593536377 ns/iter 7.96
BM_LockFreeBuffer/4 10279588.69934082 ns/iter 1256524.736636153 ns/iter 8.18

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.