File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed
Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 2121author = '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# -----------------------------------------
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace sdk
99namespace version
1010{
1111const int MAJOR_VERSION = 0 ;
12- const int MINOR_VERSION = 6 ;
12+ const int MINOR_VERSION = 7 ;
1313const int PATCH_VERSION = 0 ;
1414const char *PRE_RELEASE = " " ;
1515const char *BUILD_METADATA = " " ;
You can’t perform that action at this time.
0 commit comments