Skip to content

Commit 426365c

Browse files
authored
Prepare for releasing 1.1.0 (#1079)
1 parent 9e8be67 commit 426365c

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,19 @@ Increment the:
1515

1616
## [Unreleased]
1717

18+
## [1.1.0] 2021-11-19
19+
20+
* [BUILD] build release tarball when nlohmann-json not installed ([#1074](https://github.com/open-telemetry/opentelemetry-cpp/pull/1074))
21+
* [SDK] Bugfix: regex is neither working on GCC 4.9.x ([#1069](https://github.com/open-telemetry/opentelemetry-cpp/pull/1069))
22+
* [SDK] Improvement: span_id should not break strict aliasing. ([#1068](https://github.com/open-telemetry/opentelemetry-cpp/pull/1068))
23+
* [EXAMPLE] OTLP HTTP log example ([#1062](https://github.com/open-telemetry/opentelemetry-cpp/pull/1062))
24+
* [SDK] OTLP gRPC log export should fail after shutdown ([#1064](https://github.com/open-telemetry/opentelemetry-cpp/pull/1064))
25+
* [BUILD] Building otlp exporter from the release tarball ([#1056](https://github.com/open-telemetry/opentelemetry-cpp/pull/1056))
26+
* [METRICS] Move old metrics implementation to different directory, and rename targets to \_deprecated ([#1053](https://github.com/open-telemetry/opentelemetry-cpp/pull/1053))
1827
* [EXPORTER] Add OTLP/gRPC Log Exporter ([#1048](https://github.com/open-telemetry/opentelemetry-cpp/pull/1048))
1928
* [EXPORTER] Prometheus Exporter ([#1031](https://github.com/open-telemetry/opentelemetry-cpp/pull/1031))
2029
* [EXPORTER] Add OTLP/HTTP Log Exporter ([#1030](https://github.com/open-telemetry/opentelemetry-cpp/pull/1030))
30+
* [SDK] fix: issue 368- consistent namespace scope resolution ([#1008](https://github.com/open-telemetry/opentelemetry-cpp/pull/1008))
2131

2232
## [1.0.1] 2021-10-21
2333

api/include/opentelemetry/version.h

Lines changed: 1 addition & 1 deletion
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 1
9-
#define OPENTELEMETRY_VERSION "1.0.1"
9+
#define OPENTELEMETRY_VERSION "1.1.0"
1010
#define OPENTELEMETRY_ABI_VERSION OPENTELEMETRY_STRINGIFY(OPENTELEMETRY_ABI_VERSION_NO)
1111

1212
// clang-format off

docs/public/conf.py

Lines changed: 1 addition & 1 deletion
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 = '1.0.1'
24+
release = '1.1.0'
2525

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "opentelemetry/detail/preprocessor.h"
77

8-
#define OPENTELEMETRY_SDK_VERSION "1.0.1"
8+
#define OPENTELEMETRY_SDK_VERSION "1.1.0"
99

1010
#include "opentelemetry/version.h"
1111

sdk/src/version/version.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ namespace sdk
99
namespace version
1010
{
1111
const int MAJOR_VERSION = 1;
12-
const int MINOR_VERSION = 0;
13-
const int PATCH_VERSION = 1;
12+
const int MINOR_VERSION = 1;
13+
const int PATCH_VERSION = 0;
1414
const char *PRE_RELEASE = "";
1515
const char *BUILD_METADATA = "";
1616
const int COUNT_NEW_COMMITS = 0;

0 commit comments

Comments
 (0)