Skip to content

Commit b4584ad

Browse files
authored
Release for 0.6.0 (#739)
1 parent 5278e8c commit b4584ad

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,13 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [0.6.0] 2021-05-11
19+
1820
* [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))
1922
* [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))
2025

2126
## [0.5.0] 2021-04-26
2227

api/docs/Doxyfile

+1-1
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.5.0"
47+
PROJECT_BRIEF = "Version 0.6.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "opentelemetry/detail/preprocessor.h"
44

55
#define OPENTELEMETRY_ABI_VERSION_NO 0
6-
#define OPENTELEMETRY_VERSION "0.5.0"
6+
#define OPENTELEMETRY_VERSION "0.6.0"
77
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
88

99
// 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 = '0.5.0'
24+
release = '0.6.0'
2525

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

sdk/src/version/version.cc

+1-1
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 = 5;
12+
const int MINOR_VERSION = 6;
1313
const int PATCH_VERSION = 0;
1414
const char *PRE_RELEASE = "";
1515
const char *BUILD_METADATA = "";

0 commit comments

Comments
 (0)