diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 52800b33..a06d5d6a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -308,7 +308,7 @@ jobs: - name: Record SDK Version History if: env.IS_PRODUCTION_READY == 'true' run: | - curl -f -X POST ${{ vars.SDK_VERSION_URL }}/ios/version/ -H 'X-Embrace-CI: ${{ secrets.SDK_VERSION_TOKEN }}' -H 'Content-Type: application/json' -d '{"version": "${{ RC_VERSION }}"}' + curl -f -X POST ${{ vars.SDK_VERSION_URL }}/ios/version/ -H 'X-Embrace-CI: ${{ secrets.SDK_VERSION_TOKEN }}' -H 'Content-Type: application/json' -d '{"version": "${{ env.RC_VERSION }}"}' # Note: missing/removed steps from old sdk diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a7b5863..5bee797d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 6.7.0 +*Jan 10th, 2025** +* Features + * Improvements to the Automatic View Capture functionality, allowing attributes to be added to traces (`TTFR` and `TTI`) using the `addAttributesToTrace(_:)` method. +* Fixes + * Fixed an issue causing crashes in views controllers with very short lifecycles (particularly in hosting controllers acting as internal bridges in SwiftUI). + * Fixed a bug causing compilation issues related to the use of `DispatchQueue`. + ## 6.6.0 *Dec 12th, 2024* * Features diff --git a/EmbraceIO.podspec b/EmbraceIO.podspec index 66f96f24..a46f9199 100644 --- a/EmbraceIO.podspec +++ b/EmbraceIO.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "EmbraceIO" - spec.version = "6.6.0" + spec.version = "6.7.0" spec.summary = "Visibility into your users that you didn't have before." spec.description = <<-DESC Embrace is the only performance monitoring platform focused solely on mobile. We are built diff --git a/Sources/EmbraceCommonInternal/EmbraceMeta.swift b/Sources/EmbraceCommonInternal/EmbraceMeta.swift index c4f02c3d..a93677aa 100644 --- a/Sources/EmbraceCommonInternal/EmbraceMeta.swift +++ b/Sources/EmbraceCommonInternal/EmbraceMeta.swift @@ -6,5 +6,5 @@ // Do not edit this file manually public class EmbraceMeta { - public static let sdkVersion = "6.6.0" + public static let sdkVersion = "6.7.0" }