From d158e26be92521ebdcee8520b842adae25b827cb Mon Sep 17 00:00:00 2001 From: ferologics Date: Wed, 5 Jun 2024 22:53:36 +0200 Subject: [PATCH] Release 5.6.0 --- CHANGELOG.md | 12 ++++++++++++ HyperTrack.podspec | 2 +- Package.swift | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc38ec7..09148b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.6.0] - 2024-06-05 + +### Added + +- 🆕 New `HyperTrack.workerHandle` property can be used to identify workers + + - We observed our customers identify worker devices via `HyperTrack.metadata`, so we decided to make it a first class citizen in our API! + - If you previously used `metadata` to identify workers, we suggest using `workerHandle` for this purpose instead. 👈 + +- Exposed a new `HyperTrackSwizzlingDidReceiveRemoteNotificationEnabled` Info.plist key that can be used to specifically disable swizzling of the `UIApplicationDelegate.application(_:didReceiveRemoteNotification:fetchCompletionHandler:)` method. + ## [5.5.4] - 2024-05-13 ### Changed @@ -541,6 +552,7 @@ We are excited to announce the release of HyperTrack iOS SDK 5.0.0, a major upda - SDK now consumes less network data +[5.6.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.6.0 [5.5.4]: https://github.com/hypertrack/sdk-ios/releases/tag/5.5.4 [5.5.3]: https://github.com/hypertrack/sdk-ios/releases/tag/5.5.3 [5.5.2]: https://github.com/hypertrack/sdk-ios/releases/tag/5.5.2 diff --git a/HyperTrack.podspec b/HyperTrack.podspec index 7a4c190..3fcea5e 100644 --- a/HyperTrack.podspec +++ b/HyperTrack.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| # Root specification spec.name = "HyperTrack" - spec.version = "5.5.4" + spec.version = "5.6.0" spec.summary = "A Movement tracking SDK for iOS" spec.description = "HyperTrack is a Movement tracking SDK" spec.license = { :type => "Copyright", :text => "Copyright (c) 2024 HyperTrack, Inc. (https://www.hypertrack.com)" } diff --git a/Package.swift b/Package.swift index e41faf6..d3f9a00 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let name = "HyperTrack" -let version = "5.5.4" +let version = "5.6.0" let package = Package( name: name, @@ -13,7 +13,7 @@ let package = Package( .binaryTarget( name: name, url: "https://github.com/hypertrack/sdk-ios/releases/download/\(version)/\(name).xcframework.zip", - checksum: "f064b696306168ac5ec8be5e25df0fc7352aefe565b62e94015d3c745ae37b89" + checksum: "6877a2e963f3e80b05280799c3453766a1470775cd1c7c61ec04bfd57b4ddd3f" ) ], swiftLanguageVersions: [.v5]