Skip to content

Commit 93dd39b

Browse files
authored
Release for 1.0.0-rc1 (#824)
1 parent 857fd31 commit 93dd39b

File tree

6 files changed

+18
-7
lines changed

6 files changed

+18
-7
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.0.0-rc1] 2021-06-04
19+
20+
* [BUILD] Enable Jaeger exporter build in Windows ([#815](https://github.com/open-telemetry/opentelemetry-cpp/pull/815))
21+
* [DOCS] Versioning doc update to clarify release and versioning policy ([#811](https://github.com/open-telemetry/opentelemetry-cpp/pull/811))
22+
* [LOGS] Move Logging implementation under feature-flag ([#807](https://github.com/open-telemetry/opentelemetry-cpp/pull/807))
23+
* [BUILD] Filter metric headers files from `opentelemetry-api` and `opentelemetry-sdk` targets if metrics feature-flag is disabled ([#806](https://github.com/open-telemetry/opentelemetry-cpp/pull/806))
24+
* [BUILD] Fix install rule for ostream exporter, Jaeger, ETW, ElasticSearch ([#805](Fix install rule for header files of ostream exporter))
25+
* [API/SDK] Switch from mpark::variant to absl::variant as default ([#771](https://github.com/open-telemetry/opentelemetry-cpp/pull/771))
26+
* [API/SDK] Support `const char *` as acceptable data type for attributes and resources ([#771](https://github.com/open-telemetry/opentelemetry-cpp/pull/771))
27+
* [EXAMPLE] gRPC instrumentation example with context propagation ([#729](https://github.com/open-telemetry/opentelemetry-cpp/pull/729))
28+
1829
## [0.7.0] 2021-05-26
1930

2031
* [METRICS] Move metrics api/sdk under preview feature flag ([#745](https://github.com/open-telemetry/opentelemetry-cpp/pull/745))

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.7.0"
47+
PROJECT_BRIEF = "Version 1.0.0-rc1"
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
@@ -6,7 +6,7 @@
66
#include "opentelemetry/detail/preprocessor.h"
77

88
#define OPENTELEMETRY_ABI_VERSION_NO 0
9-
#define OPENTELEMETRY_VERSION "0.7.0"
9+
#define OPENTELEMETRY_VERSION "1.0.0-rc1"
1010
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
1111

1212
// 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.7.0'
24+
release = '1.0.0-rc1'
2525

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

sdk/include/opentelemetry/sdk/version/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "opentelemetry/detail/preprocessor.h"
77

88
#define OPENTELEMETRY_SDK_ABI_VERSION_NO 0
9-
#define OPENTELEMETRY_SDK_VERSION "0.1.0"
9+
#define OPENTELEMETRY_SDK_VERSION "1.0.0-rc1"
1010
#define OPENTELEMETRY_SDK_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_SDK_ABI_VERSION_NO)
1111

1212
// clang-format off

sdk/src/version/version.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ namespace sdk
88
{
99
namespace version
1010
{
11-
const int MAJOR_VERSION = 0;
12-
const int MINOR_VERSION = 7;
11+
const int MAJOR_VERSION = 1;
12+
const int MINOR_VERSION = 0;
1313
const int PATCH_VERSION = 0;
14-
const char *PRE_RELEASE = "";
14+
const char *PRE_RELEASE = "rc1";
1515
const char *BUILD_METADATA = "";
1616
const int COUNT_NEW_COMMITS = 0;
1717
const char *BRANCH = "";

0 commit comments

Comments
 (0)