diff --git a/CHANGELOG.md b/CHANGELOG.md index ec23f5db..3fb1d014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ Unreleased ### SDK Bugs +Release v1.8.0 (2022-11-08) +================================ +### SDK Enhancements +* Oversampling Mitigation [#PR381](https://github.com/aws/aws-xray-sdk-go/pull/381) +* Changed Missing Context default strategy to log [#PR382](https://github.com/aws/aws-xray-sdk-go/pull/382) + +### SDK Bugs + Release v1.7.1 (2022-09-14) ================================ diff --git a/xray/config.go b/xray/config.go index e2506992..9e97a2e5 100644 --- a/xray/config.go +++ b/xray/config.go @@ -24,7 +24,7 @@ import ( ) // SDKVersion records the current X-Ray Go SDK version. -const SDKVersion = "1.7.1" +const SDKVersion = "1.8.0" // SDKType records which X-Ray SDK customer uses. const SDKType = "X-Ray for Go"