diff --git a/CHANGELOG.md b/CHANGELOG.md index f6c576e..5e58682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.0.2] - 2023-09-26 +### Fixed +- Fixed `addGeotag()` and `location` returning Errors when there is no intent to track. +- Fixed rare cases when starting tracking remotely when the app is not running resulted in the SDK not updating locations until the user opens the app. + ## [5.0.1] - 2023-09-13 ### Fixed - Resolved an issue that could lead to data corruption if the app crashed during a write operation. @@ -261,6 +266,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SDK now consumes less network data +[5.0.2]: https://github.com/hypertrack/sdk-ios/releases/tag/5.0.2 [5.0.1]: https://github.com/hypertrack/sdk-ios/releases/tag/5.0.1 [5.0.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.0.0 [4.16.1]: https://github.com/hypertrack/sdk-ios/releases/tag/4.16.1 diff --git a/HyperTrack.podspec b/HyperTrack.podspec index 922b98e..9661005 100644 --- a/HyperTrack.podspec +++ b/HyperTrack.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| # Root specification spec.name = "HyperTrack" - spec.version = "5.0.1" + spec.version = "5.0.2" spec.summary = "A Movement tracking SDK for iOS" spec.description = "HyperTrack is a Movement tracking SDK" spec.license = { :type => "Copyright", :text => "Copyright (c) 2023 HyperTrack, Inc. (https://www.hypertrack.com)" } diff --git a/Package.swift b/Package.swift index 71e4702..b55bd22 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let name = "HyperTrack" -let version = "5.0.1" +let version = "5.0.2" 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: "797716683add9b759237c42294f4287117251418ac20bce0c840fac3ea3ca96f" + checksum: "6d4813992266907e9a0f9a08a6a4590ac84fe47503123f92fdaaf035bcacdf07" ) ], swiftLanguageVersions: [.v5]