diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d86d1ba9..0c58e6520d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ Increment the: ## [Unreleased] -## [1.17 2024-10-02] +## [1.17 2024-10-07] * [CI] Add a clang-tidy build [#3001](https://github.com/open-telemetry/opentelemetry-cpp/pull/3001) @@ -107,6 +107,9 @@ Increment the: * [SDK] Update MetricProducer interface to match spec [#3044](https://github.com/open-telemetry/opentelemetry-cpp/pull/3044) +* [EXPORTER] Fix URL in ES exporter, fix ipv6 supporting for http client + [#3081](https://github.com/open-telemetry/opentelemetry-cpp/pull/3081) + Breaking changes: * [REMOVAL] Remove build option `WITH_DEPRECATED_SDK_FACTORY` diff --git a/sdk/src/version/version.cc b/sdk/src/version/version.cc index bf8a2a4f6b..d0691767df 100644 --- a/sdk/src/version/version.cc +++ b/sdk/src/version/version.cc @@ -18,7 +18,7 @@ const char *pre_release = "NONE"; const char *build_metadata = "NONE"; const char *short_version = "1.17.0"; const char *full_version = "1.17.0-NONE-NONE"; -const char *build_date = "Tue Oct 1 09:15:16 PM UTC 2024"; +const char *build_date = "Mon Oct 7 07:11:52 AM UTC 2024"; } // namespace version } // namespace sdk OPENTELEMETRY_END_NAMESPACE