Skip to content

Commit 96534a7

Browse files
authored
Prepare v1.4.1 patch release (#1458)
1 parent 9f3a8ee commit 96534a7

File tree

5 files changed

+32
-13
lines changed

5 files changed

+32
-13
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,25 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.4.1] 2022-06-19
19+
20+
* [METRICS SDK] Fix variables inizialization [#1430](https://github.com/open-telemetry/opentelemetry-cpp/pull/1430)
21+
* [DOCS] Fixed broken link to OpenTelemetry.io (#1445) [#1446](https://github.com/open-telemetry/opentelemetry-cpp/pull/1446)
22+
* [BUILD] Upgrade nlohmann_json to 3.10.5 (#1438) [#1441](https://github.com/open-telemetry/opentelemetry-cpp/pull/1441)
23+
* [METRICS SDK] fix histogram [#1440](https://github.com/open-telemetry/opentelemetry-cpp/pull/1440)
24+
* [DOCS] Fix GettingStarted documentation for Jaeger HTTP exporter (#1347) [#1439](https://github.com/open-telemetry/opentelemetry-cpp/pull/1439)
25+
* [BUILD] install sdk-config.h [#1419](https://github.com/open-telemetry/opentelemetry-cpp/pull/1419)
26+
* [EXAMPLE] Log current timestamp instead of epoch time [#1434](https://github.com/open-telemetry/opentelemetry-cpp/pull/1434)
27+
* [METRICS SDK] Add attributes/dimensions to metrics ostream exporter [#1400](https://github.com/open-telemetry/opentelemetry-cpp/pull/1400)
28+
* [SDK] Fix global log handle symbols when using dlopen [#1420](https://github.com/open-telemetry/opentelemetry-cpp/pull/1420)
1829
* [METRICS] Only record non-negative / finite / Non-NAN histogram values([#1427](https://github.com/open-telemetry/opentelemetry-cpp/pull/1427))
30+
* [ETW EXPORTER] Fix ETW log exporter header inclusion [#1426](https://github.com/open-telemetry/opentelemetry-cpp/pull/1426)
31+
* [ETW EXPORTER] Copy string_view passed to ETW exporter in PropertyVariant [#1425](https://github.com/open-telemetry/opentelemetry-cpp/pull/1425)
32+
* [METRICS API/SDK] Pass state to async callback function. [#1408](https://github.com/open-telemetry/opentelemetry-cpp/pull/1408)
33+
* [BUILD] fix nlohmann_json's (third party) include dir [#1415](https://github.com/open-telemetry/opentelemetry-cpp/pull/1415)
34+
* [SDK] fix: WaitOnSocket select error when sockfd above FD_SETSIZE [#1410](https://github.com/open-telemetry/opentelemetry-cpp/pull/1410)
35+
* [SDK] fix OTEL_INTERNAL_LOG_INFO [#1407](https://github.com/open-telemetry/opentelemetry-cpp/pull/1407)
36+
* [DOCS] Document Getting Started with Prometheus and Grafana [#1396](https://github.com/open-telemetry/opentelemetry-cpp/pull/1396)
1937

2038
## [1.4.0] 2022-05-17
2139

api/include/opentelemetry/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "opentelemetry/detail/preprocessor.h"
77

88
#define OPENTELEMETRY_ABI_VERSION_NO 1
9-
#define OPENTELEMETRY_VERSION "1.4.0"
9+
#define OPENTELEMETRY_VERSION "1.4.1"
1010
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
1111

1212
// clang-format off

docs/public/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = 'OpenTelemetry authors'
2222

2323
# The full version, including alpha/beta/rc tags
24-
release = '1.4.0'
24+
release = '1.4.1'
2525

2626
# Run sphinx on subprojects and copy output
2727
# -----------------------------------------

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.4.0"
8+
#define OPENTELEMETRY_SDK_VERSION "1.4.1"
99

1010
#include "opentelemetry/version.h"
1111

sdk/src/version/version.cc

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Please DONOT touch this file.
2-
// Any changes done here would be overwritten during release/build.
2+
// Any changes done here would be overwritten by pre-commit git hook
33

44
#include "opentelemetry/sdk/version/version.h"
55

@@ -10,15 +10,16 @@ namespace version
1010
{
1111
const int MAJOR_VERSION = 1;
1212
const int MINOR_VERSION = 4;
13-
const int PATCH_VERSION = 0;
14-
const char *PRE_RELEASE = "";
15-
const char *BUILD_METADATA = "";
16-
const int COUNT_NEW_COMMITS = 0;
17-
const char *BRANCH = "";
18-
const char *COMMIT_HASH = "";
19-
const char *SHORT_VERSION = "";
20-
const char *FULL_VERSION = "";
21-
const char *BUILD_DATE = "";
13+
const int PATCH_VERSION = 1;
14+
const char *PRE_RELEASE = "NONE";
15+
const char *BUILD_METADATA = "NONE";
16+
const int COUNT_NEW_COMMITS = 20;
17+
const char *BRANCH = "pre_release_1.4.1";
18+
const char *COMMIT_HASH = "7f4eaac3c296d5198e5b4be3a2222ade85551759";
19+
const char *SHORT_VERSION = "1.4.1";
20+
const char *FULL_VERSION =
21+
"1.4.1-NONE-NONE-20-pre_release_1.4.1-7f4eaac3c296d5198e5b4be3a2222ade85551759";
22+
const char *BUILD_DATE = "Sun Jun 19 16:34:17 UTC 2022";
2223
} // namespace version
2324
} // namespace sdk
2425
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)