From dd0c9c2bb9ada5ae8cb1846dae29f22355a8c8e6 Mon Sep 17 00:00:00 2001 From: ferologics Date: Fri, 17 Jan 2025 12:15:08 +0100 Subject: [PATCH] Release 5.10.0 --- CHANGELOG.md | 13 +++++++++++++ HyperTrack.podspec | 2 +- Package.swift | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2448525..c1e40df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.10.0] - 2024-01-17 + +### Added + +- New `HyperTrack.allowMockLocation` getter/setter which can be used to allow mock location(s). + - Use this API **only if** modifying the compiled `HyperTrackAllowMockLocation` Info.plist value is insufficient for your needs. + - example: if for some reason you aren't able to recompile with `HyperTrackAllowMockLocation` set to `YES` for your prod app QA mock location tests. + +### Changed + +- Fixes and improvements to SDK runtime efficiency + ## [5.9.1] - 2024-12-05 ### Changed @@ -622,6 +634,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.10.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.10.0 [5.9.1]: https://github.com/hypertrack/sdk-ios/releases/tag/5.9.1 [5.9.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.9.0 [5.8.1]: https://github.com/hypertrack/sdk-ios/releases/tag/5.8.1 diff --git a/HyperTrack.podspec b/HyperTrack.podspec index f45743d..cd7a4ed 100644 --- a/HyperTrack.podspec +++ b/HyperTrack.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| # Root specification spec.name = "HyperTrack" - spec.version = "5.9.1" + spec.version = "5.10.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 e72e243..bf5b67c 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let name = "HyperTrack" -let version = "5.9.1" +let version = "5.10.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: "c9ee2ff857dc432f4d5ddc79ca7c8f9ea7d6ea788e1352799e0443aa50544d8b" + checksum: "6f6271177ff2fd9d34e14d1a574bc1e288e2a8f3f4e023e7d381e9742b3aad0d" ) ], swiftLanguageVersions: [.v5]