File tree 5 files changed +9
-4
lines changed
5 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,13 @@ Increment the:
15
15
16
16
## [ Unreleased]
17
17
18
+ ## [ 0.6.0] 2021-05-11
19
+
18
20
* [ EXPORTER] Add Jaeger exporter ([ #534 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/534 ) )
21
+ * [ SDK] Support multiple processors ([ #692 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/692 ) )
19
22
* [ SDK] Add instrumentation library and multiple tracer support ([ #693 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/693 ) )
23
+ * [ SDK] Resource integration with Exporters ([ #706 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/706 ) )
24
+ * [ EXAMPLE] Enhance existing http example with propagation ([ #727 ] ( https://github.com/open-telemetry/opentelemetry-cpp/pull/727 ) )
20
25
21
26
## [ 0.5.0] 2021-04-26
22
27
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.5 .0"
47
+ PROJECT_BRIEF = "Version 0.6 .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 3
3
#include " opentelemetry/detail/preprocessor.h"
4
4
5
5
#define OPENTELEMETRY_ABI_VERSION_NO 0
6
- #define OPENTELEMETRY_VERSION " 0.5 .0"
6
+ #define OPENTELEMETRY_VERSION " 0.6 .0"
7
7
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY (OPENTELEMETRY_ABI_VERSION_NO)
8
8
9
9
// 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.5 .0'
24
+ release = '0.6 .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 = 5 ;
12
+ const int MINOR_VERSION = 6 ;
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