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:
15
15
16
16
## [ Unreleased]
17
17
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 ) )
19
23
* [ 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 ) )
20
31
21
32
## [ 0.6.0] 2021-05-11
22
33
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ PROJECT_NUMBER =
44
44
# for a project that appears at the top of each page and should give viewer a
45
45
# quick idea about the purpose of the project. Keep the description short.
46
46
47
- PROJECT_BRIEF = "Version 0.6 .0"
47
+ PROJECT_BRIEF = "Version 0.7 .0"
48
48
49
49
# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
50
50
# in the documentation. The maximum height of the logo should not exceed 55
Original file line number Diff line number Diff line change 6
6
#include " opentelemetry/detail/preprocessor.h"
7
7
8
8
#define OPENTELEMETRY_ABI_VERSION_NO 0
9
- #define OPENTELEMETRY_VERSION " 0.6 .0"
9
+ #define OPENTELEMETRY_VERSION " 0.7 .0"
10
10
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY (OPENTELEMETRY_ABI_VERSION_NO)
11
11
12
12
// clang-format off
Original file line number Diff line number Diff line change 21
21
author = 'OpenTelemetry authors'
22
22
23
23
# The full version, including alpha/beta/rc tags
24
- release = '0.6 .0'
24
+ release = '0.7 .0'
25
25
26
26
# Run sphinx on subprojects and copy output
27
27
# -----------------------------------------
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace sdk
9
9
namespace version
10
10
{
11
11
const int MAJOR_VERSION = 0 ;
12
- const int MINOR_VERSION = 6 ;
12
+ const int MINOR_VERSION = 7 ;
13
13
const int PATCH_VERSION = 0 ;
14
14
const char *PRE_RELEASE = " " ;
15
15
const char *BUILD_METADATA = " " ;
You can’t perform that action at this time.
0 commit comments