Skip to content

Commit baecbb9

Browse files
authored
[RELEASE] Release opentelemetry-cpp version 1.16.1 (#3007)
1 parent d8ae09e commit baecbb9

File tree

5 files changed

+45
-10
lines changed

5 files changed

+45
-10
lines changed

CHANGELOG.md

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,50 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.16.1 2024-07-17]
19+
20+
* [BUILD] Add bazel missing BUILD file
21+
[#2720](https://github.com/open-telemetry/opentelemetry-cpp/pull/2720)
22+
23+
* [SDK] Added reserve for spans array in BatchSpanProcessor.
24+
[#2724](https://github.com/open-telemetry/opentelemetry-cpp/pull/2724)
25+
26+
* [DOC] Update "Using triplets" section in building-with-vcpkg documentation.
27+
[#2726](https://github.com/open-telemetry/opentelemetry-cpp/pull/2726)
28+
29+
* [DOC] Remove comment for unused LoggerProvider initialization params
30+
[#2972](https://github.com/open-telemetry/opentelemetry-cpp/pull/2972)
31+
1832
* [SECURITY] Remove OTLP HTTP support for TLS 1.0 and TLS 1.1,
1933
require TLS 1.2 or better
20-
[#2721](https://github.com/open-telemetry/opentelemetry-cpp/pull/2721)
34+
[#2722](https://github.com/open-telemetry/opentelemetry-cpp/pull/2722)
35+
36+
* [TEST] Fix opentelemetry-collector bind address
37+
[#2989](https://github.com/open-telemetry/opentelemetry-cpp/pull/2989)
38+
39+
* [EXPORTER] Fix references in AttributeValueVisitor
40+
[#2985](https://github.com/open-telemetry/opentelemetry-cpp/pull/2985)
41+
42+
* [Code health] include-what-you-use cleanup, part 2
43+
[#2704](https://github.com/open-telemetry/opentelemetry-cpp/pull/2704)
44+
45+
* [Code Health] clang-tidy cleanup, part 1
46+
[#2990](https://github.com/open-telemetry/opentelemetry-cpp/pull/2990)
47+
48+
* [CI] Build failures with ABSEIL 20240116 and CMAKE 3.30
49+
[#3002](https://github.com/open-telemetry/opentelemetry-cpp/pull/3002)
50+
51+
* [CI] Enable bzlmod
52+
[#2995](https://github.com/open-telemetry/opentelemetry-cpp/pull/2995)
53+
54+
* [Metrics SDK] Fix hash calculation for nostd::string
55+
[#2999](https://github.com/open-telemetry/opentelemetry-cpp/pull/2999)
2156

2257
Breaking changes:
2358

2459
* [SECURITY] Remove OTLP HTTP support for TLS 1.0 and TLS 1.1,
2560
require TLS 1.2 or better
26-
[#2721](https://github.com/open-telemetry/opentelemetry-cpp/pull/2721)
61+
[#2722](https://github.com/open-telemetry/opentelemetry-cpp/pull/2722)
2762
* The OTLP HTTP exporter no longer accept options like:
2863
* min_TLS = 1.0
2964
* min_TLS = 1.1

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.16.0"
13+
#define OPENTELEMETRY_VERSION "1.16.1"
1414
#define OPENTELEMETRY_VERSION_MAJOR 1
1515
#define OPENTELEMETRY_VERSION_MINOR 16
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

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.16.0"
27+
release = "1.16.1"
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
@@ -3,7 +3,7 @@
33

44
#pragma once
55

6-
#define OPENTELEMETRY_SDK_VERSION "1.16.0"
6+
#define OPENTELEMETRY_SDK_VERSION "1.16.1"
77

88
#include "opentelemetry/version.h"
99

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 = 16;
16-
const int patch_version = 0;
16+
const int patch_version = 1;
1717
const char *pre_release = "NONE";
1818
const char *build_metadata = "NONE";
19-
const char *short_version = "1.16.0";
20-
const char *full_version = "1.16.0-NONE-NONE";
21-
const char *build_date = "Fri Jun 21 16:41:17 UTC 2024";
19+
const char *short_version = "1.16.1";
20+
const char *full_version = "1.16.1-NONE-NONE";
21+
const char *build_date = "Wed Jul 17 17:34:38 UTC 2024";
2222
} // namespace version
2323
} // namespace sdk
2424
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)