Skip to content

Commit ac0e617

Browse files
authored
Release for 0.7.0 (open-telemetry#800)
1 parent 840701b commit ac0e617

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,19 @@ Increment the:
1515

1616
## [Unreleased]
1717

18-
* [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770))
18+
## [0.7.0] 2021-05-26
19+
20+
* [METRICS] Move metrics api/sdk under preview feature flag ([#745](https://github.com/open-telemetry/opentelemetry-cpp/pull/745))
21+
* [DOCS] Add instructions to build using Bazel ([#747](https://github.com/open-telemetry/opentelemetry-cpp/pull/747))
22+
* [DOCS] Update copyright headers ([#754](https://github.com/open-telemetry/opentelemetry-cpp/pull/754))
1923
* [EXPORTER] Populate resource to OTLP proto data ([#758](https://github.com/open-telemetry/opentelemetry-cpp/pull/758))
24+
* [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770))
25+
* [BUILD] Enable building API only CMake Project ([#778](https://github.com/open-telemetry/opentelemetry-cpp/pull/778))
26+
* [SDK] Fix for sampling of root span ([#784](https://github.com/open-telemetry/opentelemetry-cpp/pull/784))
27+
* [CI] Add Jaeger exporter to CMake CI build ([#786](https://github.com/open-telemetry/opentelemetry-cpp/pull/786))
28+
* [API] `BREAKING CHANGE` - Tracer::WithActiveSpan() to return Scope object intead of unique_ptr ([#788](https://github.com/open-telemetry/opentelemetry-cpp/pull/788))
29+
* [DOCS] Add docs for nested spans and context propagation in readthedocs ([#792](https://github.com/open-telemetry/opentelemetry-cpp/pull/792))
30+
* [CI] Output verbose error for failed unit-test in CI ([#796](https://github.com/open-telemetry/opentelemetry-cpp/pull/796))
2031

2132
## [0.6.0] 2021-05-11
2233

api/docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ PROJECT_NUMBER =
4444
# for a project that appears at the top of each page and should give viewer a
4545
# quick idea about the purpose of the project. Keep the description short.
4646

47-
PROJECT_BRIEF = "Version 0.6.0"
47+
PROJECT_BRIEF = "Version 0.7.0"
4848

4949
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
5050
# in the documentation. The maximum height of the logo should not exceed 55

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 0
9-
#define OPENTELEMETRY_VERSION "0.6.0"
9+
#define OPENTELEMETRY_VERSION "0.7.0"
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 = '0.6.0'
24+
release = '0.7.0'
2525

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

sdk/src/version/version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace sdk
99
namespace version
1010
{
1111
const int MAJOR_VERSION = 0;
12-
const int MINOR_VERSION = 6;
12+
const int MINOR_VERSION = 7;
1313
const int PATCH_VERSION = 0;
1414
const char *PRE_RELEASE = "";
1515
const char *BUILD_METADATA = "";

0 commit comments

Comments
 (0)