Skip to content

Commit 6a99fee

Browse files
authored
Prepare v1.8.0 release (open-telemetry#1813)
1 parent 0122b13 commit 6a99fee

File tree

5 files changed

+37
-10
lines changed

5 files changed

+37
-10
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,33 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.8.0] 2022-11-27
19+
20+
* [DOC] Update Metrics status in README.md [#1722](https://github.com/open-telemetry/opentelemetry-cpp/pull/1722)
21+
* [DOC] Remove misleading comments about ABI compatibility for nostd::span [#1731](https://github.com/open-telemetry/opentelemetry-cpp/pull/1731)
22+
* [BUILD] Bump abseil-cpp for cmake CI [#1807](https://github.com/open-telemetry/opentelemetry-cpp/pull/1807)
23+
* [Exporter] Add status code to OTLP grpc trace log [#1792](https://github.com/open-telemetry/opentelemetry-cpp/pull/1792)
24+
* [Exporter] add fix for prometheus exporter build [#1795](https://github.com/open-telemetry/opentelemetry-cpp/pull/1795)
25+
* [BUILD] Add option WITH_BENCHMARK to disable building benchmarks [#1794](https://github.com/open-telemetry/opentelemetry-cpp/pull/1794)
26+
* [BUILD] Fix CI benchmark [#1799](https://github.com/open-telemetry/opentelemetry-cpp/pull/1799)
27+
* [BUILD] bump to gRPC v1.48.1 for bazel CIs [#1786](https://github.com/open-telemetry/opentelemetry-cpp/pull/1786)
28+
* [BUILD] Fix CI build [#1798](https://github.com/open-telemetry/opentelemetry-cpp/pull/1798)
29+
* [BUILD] Fix clang-format in CI [#1796](https://github.com/open-telemetry/opentelemetry-cpp/pull/1796)
30+
* Fix session lock of OtlpHttpClient [#1760](https://github.com/open-telemetry/opentelemetry-cpp/pull/1760)
31+
* [Metrics SDK] Add MeterContext::ForEachMeter() method to process callbacks on
32+
Meter in thread-safe manner [#1783](https://github.com/open-telemetry/opentelemetry-cpp/pull/1783)
33+
* [DOC] Document that clang-format version 10.0 is used. [#1782](https://github.com/open-telemetry/opentelemetry-cpp/pull/1782)
34+
* [BUILD] Upgrade bazel build to use abseil-cpp-20220623.1 [#1779](https://github.com/open-telemetry/opentelemetry-cpp/pull/1779)
35+
* Fix GlobalLogHandler singleton creation order [#1767](https://github.com/open-telemetry/opentelemetry-cpp/pull/1767)
36+
* [Metrics SDK] Change Prometheus CMake target name [#1765](https://github.com/open-telemetry/opentelemetry-cpp/pull/1765)
37+
* [DOC] Cleanup INSTALL.md [#1757](https://github.com/open-telemetry/opentelemetry-cpp/pull/1757)
38+
* [DOC] Format config options in OTLP exporter readme [#1748](https://github.com/open-telemetry/opentelemetry-cpp/pull/1748)
39+
* [DOC] Cleanup ENABLE_METRICS_PREVIEW [#1745](https://github.com/open-telemetry/opentelemetry-cpp/pull/1745)
40+
* [Build] Multiple CURL packages leads to invalid build (#1738) [#1739](https://github.com/open-telemetry/opentelemetry-cpp/pull/1739)
41+
* [Metrics SDK] Cleanup ENABLE_METRICS_PREVIEW [#1735](https://github.com/open-telemetry/opentelemetry-cpp/pull/1735)
42+
* [Logs SDK] LogProcessor, LogExporter class name [#1736](https://github.com/open-telemetry/opentelemetry-cpp/pull/1736)
43+
* [Metrics SDK] Cleanup of old _metric api/sdk [#1734](https://github.com/open-telemetry/opentelemetry-cpp/pull/1734)
44+
* [ETW Exporter] Fix span timestamp(s) precision to nanoseconds [#1726](https://github.com/open-telemetry/opentelemetry-cpp/pull/1726)
1845
* [LOGS SDK] Rename LogProcessor and LogExporter to LogRecordProcessor and LogRecordExporter
1946
[#1727](https://github.com/open-telemetry/opentelemetry-cpp/pull/1727)
2047
* [METRICS SDK] - Remove old metrics from Github CI

api/include/opentelemetry/version.h

+1-1
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.7.0"
9+
#define OPENTELEMETRY_VERSION "1.8.0"
1010
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
1111

1212
// clang-format off

docs/public/conf.py

+1-1
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.7.0"
24+
release = "1.8.0"
2525

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

sdk/include/opentelemetry/sdk/version/version.h

+1-1
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.7.0"
8+
#define OPENTELEMETRY_SDK_VERSION "1.8.0"
99

1010
#include "opentelemetry/version.h"
1111

sdk/src/version/version.cc

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ namespace sdk
99
namespace version
1010
{
1111
const int MAJOR_VERSION = 1;
12-
const int MINOR_VERSION = 7;
12+
const int MINOR_VERSION = 8;
1313
const int PATCH_VERSION = 0;
1414
const char *PRE_RELEASE = "NONE";
1515
const char *BUILD_METADATA = "NONE";
16-
const int COUNT_NEW_COMMITS = 35;
17-
const char *BRANCH = "pre_release_1.7.0";
18-
const char *COMMIT_HASH = "dd7e257b6de71eeaf9e3149530962301705b9a0d";
19-
const char *SHORT_VERSION = "1.7.0";
16+
const int COUNT_NEW_COMMITS = 31;
17+
const char *BRANCH = "pre_release_1.8.0";
18+
const char *COMMIT_HASH = "06b4795ba2cf898efda4ee34d7b40fb6a2968b95";
19+
const char *SHORT_VERSION = "1.8.0";
2020
const char *FULL_VERSION =
21-
"1.7.0-NONE-NONE-35-pre_release_1.7.0-dd7e257b6de71eeaf9e3149530962301705b9a0d";
22-
const char *BUILD_DATE = "Fri 28 Oct 2022 06:22:43 PM UTC";
21+
"1.8.0-NONE-NONE-31-pre_release_1.8.0-06b4795ba2cf898efda4ee34d7b40fb6a2968b95";
22+
const char *BUILD_DATE = "Sun 27 Nov 2022 02:32:48 PM UTC";
2323
} // namespace version
2424
} // namespace sdk
2525
OPENTELEMETRY_END_NAMESPACE

0 commit comments

Comments
 (0)