From 322b3091d92e8830c739b00e87f62dab88653bca Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Wed, 26 May 2021 10:14:26 +0530 Subject: [PATCH 1/4] Prepare for releasing 0.7.0 --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00e36ca449..fbfb4c7f18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ Increment the: * PATCH version when you make backwards compatible bug fixes. ## [Unreleased] + +## [0.7.0] 2021-05-26 * [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770)) * [EXPORTER] Populate resource to OTLP proto data ([#758](https://github.com/open-telemetry/opentelemetry-cpp/pull/758)) From ce36559aa77284bfa69209aa2d1c67e19415ad57 Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Wed, 26 May 2021 11:06:41 +0530 Subject: [PATCH 2/4] v0.7.0 --- CHANGELOG.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbfb4c7f18..d1275db3f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,11 +14,18 @@ Increment the: * PATCH version when you make backwards compatible bug fixes. ## [Unreleased] - + ## [0.7.0] 2021-05-26 -* [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770)) +* [METRICS] Move metrics api/sdk under preview feature flag ([#745](https://github.com/open-telemetry/opentelemetry-cpp/pull/745)) +* [DOCS] Add instructions to build using Bazel ([#747](https://github.com/open-telemetry/opentelemetry-cpp/pull/747)) +* [DOCS] Update copyright headers ([#754](https://github.com/open-telemetry/opentelemetry-cpp/pull/754)) * [EXPORTER] Populate resource to OTLP proto data ([#758](https://github.com/open-telemetry/opentelemetry-cpp/pull/758)) +* [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770)) +* [SDK] Fix for sampling of root span ([#784](https://github.com/open-telemetry/opentelemetry-cpp/pull/784)) +* [API] `BREAKING CHANGE` - Tracer::WithActiveSpan() to return Scope object intead of unique_ptr ([#788](https://github.com/open-telemetry/opentelemetry-cpp/pull/788)) +* [DOCS] Add docs for nested spans and context propagation in readthedocs ([#792](https://github.com/open-telemetry/opentelemetry-cpp/pull/792)) +* [CI] Output verbose error for failed unit-test in CI ([#796](https://github.com/open-telemetry/opentelemetry-cpp/pull/796)) ## [0.6.0] 2021-05-11 From 410e5275e8eabeeac99cdcfac479fdbf962fb11f Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Wed, 26 May 2021 11:15:00 +0530 Subject: [PATCH 3/4] v0.7.0 --- api/docs/Doxyfile | 2 +- api/include/opentelemetry/version.h | 2 +- docs/public/conf.py | 2 +- sdk/src/version/version.cc | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/api/docs/Doxyfile b/api/docs/Doxyfile index 95ac0e8fc5..6b4993c0bb 100644 --- a/api/docs/Doxyfile +++ b/api/docs/Doxyfile @@ -44,7 +44,7 @@ PROJECT_NUMBER = # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = "Version 0.6.0" +PROJECT_BRIEF = "Version 0.7.0" # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 diff --git a/api/include/opentelemetry/version.h b/api/include/opentelemetry/version.h index 2cbe88fbbe..b191f3dc7c 100644 --- a/api/include/opentelemetry/version.h +++ b/api/include/opentelemetry/version.h @@ -6,7 +6,7 @@ #include "opentelemetry/detail/preprocessor.h" #define OPENTELEMETRY_ABI_VERSION_NO 0 -#define OPENTELEMETRY_VERSION "0.6.0" +#define OPENTELEMETRY_VERSION "0.7.0" #define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO) // clang-format off diff --git a/docs/public/conf.py b/docs/public/conf.py index c56d330bea..9cd94d2349 100644 --- a/docs/public/conf.py +++ b/docs/public/conf.py @@ -21,7 +21,7 @@ author = 'OpenTelemetry authors' # The full version, including alpha/beta/rc tags -release = '0.6.0' +release = '0.7.0' # Run sphinx on subprojects and copy output # ----------------------------------------- diff --git a/sdk/src/version/version.cc b/sdk/src/version/version.cc index 27b5a7c964..98827291aa 100644 --- a/sdk/src/version/version.cc +++ b/sdk/src/version/version.cc @@ -9,7 +9,7 @@ namespace sdk namespace version { const int MAJOR_VERSION = 0; -const int MINOR_VERSION = 6; +const int MINOR_VERSION = 7; const int PATCH_VERSION = 0; const char *PRE_RELEASE = ""; const char *BUILD_METADATA = ""; From 04c514d9eba616fb84d26dcb47140f361bf0bdea Mon Sep 17 00:00:00 2001 From: Lalit Kumar Bhasin Date: Wed, 26 May 2021 11:38:17 +0530 Subject: [PATCH 4/4] add more changes --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1275db3f7..5fdff21609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,7 +22,9 @@ Increment the: * [DOCS] Update copyright headers ([#754](https://github.com/open-telemetry/opentelemetry-cpp/pull/754)) * [EXPORTER] Populate resource to OTLP proto data ([#758](https://github.com/open-telemetry/opentelemetry-cpp/pull/758)) * [CI] Add CodeQL security scan CI workflow ([#770](https://github.com/open-telemetry/opentelemetry-cpp/pull/770)) +* [BUILD] Enable building API only CMake Project ([#778](https://github.com/open-telemetry/opentelemetry-cpp/pull/778)) * [SDK] Fix for sampling of root span ([#784](https://github.com/open-telemetry/opentelemetry-cpp/pull/784)) +* [CI] Add Jaeger exporter to CMake CI build ([#786](https://github.com/open-telemetry/opentelemetry-cpp/pull/786)) * [API] `BREAKING CHANGE` - Tracer::WithActiveSpan() to return Scope object intead of unique_ptr ([#788](https://github.com/open-telemetry/opentelemetry-cpp/pull/788)) * [DOCS] Add docs for nested spans and context propagation in readthedocs ([#792](https://github.com/open-telemetry/opentelemetry-cpp/pull/792)) * [CI] Output verbose error for failed unit-test in CI ([#796](https://github.com/open-telemetry/opentelemetry-cpp/pull/796))