Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan committed Aug 16, 2022
1 parent a9cfeb4 commit 398e056
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ Increment the:

## [1.6.0] 2022-08-15

* [METRICS SDK] Calling Observable Instruments callback during metrics collection [#1554](https://github.com/open-telemetry/opentelemetry-cpp/pull/1554)
* [METRICS SDK] Calling Observable Instruments callback during metrics
collection
[#1554](https://github.com/open-telemetry/opentelemetry-cpp/pull/1554)
* [METRICS CI] Add CI jobs for new and deprecated metrics [#1531](https://github.com/open-telemetry/opentelemetry-cpp/pull/1531)
* [METRICS BUILD] Fix metrics asan and tsan CI [#1562](https://github.com/open-telemetry/opentelemetry-cpp/pull/1562)
* [METRICS SDK] remove throw check from metrics with noexcept [#1560](https://github.com/open-telemetry/opentelemetry-cpp/pull/1560)
Expand All @@ -27,7 +29,9 @@ Increment the:
* [METRICS BUILD] fix IWYU error in instruments.h [#1555](https://github.com/open-telemetry/opentelemetry-cpp/pull/1555)
* [EXPORTER] Prometheus exporter support Gauge Type [#1553](https://github.com/open-telemetry/opentelemetry-cpp/pull/1553)
* [METRICS SDK] Fix default Metric view name [#1515](https://github.com/open-telemetry/opentelemetry-cpp/pull/1515)
* [SDK] Fix infinitely waiting when shutdown with more than one running http sessions. [#1549](https://github.com/open-telemetry/opentelemetry-cpp/pull/1549)
* [SDK] Fix infinitely waiting when shutdown with more than one running http
sessions.
[#1549](https://github.com/open-telemetry/opentelemetry-cpp/pull/1549)
* [METRICS SDK] Fix OTLP gRPC Metrics env variables [#1543](https://github.com/open-telemetry/opentelemetry-cpp/pull/1543)
* [METRICS SDK] Metric aggregation temporality controls [#1541](https://github.com/open-telemetry/opentelemetry-cpp/pull/1541)
* [METRICS SDK] Histogram min/max support [#1540](https://github.com/open-telemetry/opentelemetry-cpp/pull/1540)
Expand Down
27 changes: 14 additions & 13 deletions sdk/src/version/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,18 @@ namespace sdk
{
namespace version
{
const int MAJOR_VERSION = 1;
const int MINOR_VERSION = 6;
const int PATCH_VERSION = 0;
const char* PRE_RELEASE = "NONE";
const char* BUILD_METADATA = "NONE";
const int COUNT_NEW_COMMITS = 23;
const char* BRANCH = "pre_release_1.6.0";
const char* COMMIT_HASH = "ad23f20392f26350fec7afca229729c2ef9ef92b";
const char* SHORT_VERSION = "1.6.0";
const char* FULL_VERSION = "1.5.0-NONE-NONE-23-pre_release_1.6.0-ad23f20392f26350fec7afca229729c2ef9ef92b";
const char* BUILD_DATE = "Tue Aug 16 00:35:48 UTC 2022";
}
}
const int MAJOR_VERSION = 1;
const int MINOR_VERSION = 6;
const int PATCH_VERSION = 0;
const char *PRE_RELEASE = "NONE";
const char *BUILD_METADATA = "NONE";
const int COUNT_NEW_COMMITS = 23;
const char *BRANCH = "pre_release_1.6.0";
const char *COMMIT_HASH = "ad23f20392f26350fec7afca229729c2ef9ef92b";
const char *SHORT_VERSION = "1.6.0";
const char *FULL_VERSION =
"1.5.0-NONE-NONE-23-pre_release_1.6.0-ad23f20392f26350fec7afca229729c2ef9ef92b";
const char *BUILD_DATE = "Tue Aug 16 00:35:48 UTC 2022";
} // namespace version
} // namespace sdk
OPENTELEMETRY_END_NAMESPACE

0 comments on commit 398e056

Please sign in to comment.