Skip to content

Commit 42d1087

Browse files
committed
Release 5.5.1
1 parent 462a308 commit 42d1087

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [5.5.1] - 2024-04-16
9+
10+
### Added
11+
- iOS: Bundle the Apple Privacy Manifest file as part of the SDK xcframework
12+
- This change is required for all apps that depend on our SDK to pass AppStore review.
13+
- More info in [the announcement](https://developer.apple.com/support/third-party-SDK-requirements/) and Apple docs about [Privacy manifest files](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files)
14+
15+
### Changed
16+
- iOS: Background Location Indicator (Blue Pill)
17+
- Default behaviour has been changed to hidden on devices with "Always" location permission
18+
- Previously the indicator would always show, now only for devices with "While Using" permission
19+
- As part of this change we had to lower the location distance filter
20+
821
## [5.5.0] - 2024-04-06
922

1023
### Added
@@ -501,6 +514,7 @@ We are excited to announce the release of HyperTrack iOS SDK 5.0.0, a major upda
501514

502515
- SDK now consumes less network data
503516

517+
[5.5.1]: https://github.com/hypertrack/sdk-ios/releases/tag/5.5.1
504518
[5.5.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.5.0
505519
[5.4.1]: https://github.com/hypertrack/sdk-ios/releases/tag/5.4.1
506520
[5.4.0]: https://github.com/hypertrack/sdk-ios/releases/tag/5.4.0

HyperTrack.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
22

33
# Root specification
44
spec.name = "HyperTrack"
5-
spec.version = "5.5.0"
5+
spec.version = "5.5.1"
66
spec.summary = "A Movement tracking SDK for iOS"
77
spec.description = "HyperTrack is a Movement tracking SDK"
88
spec.license = { :type => "Copyright", :text => "Copyright (c) 2023 HyperTrack, Inc. (https://www.hypertrack.com)" }

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 HyperTrack
3+
Copyright (c) 2024 HyperTrack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import PackageDescription
44

55
let name = "HyperTrack"
6-
let version = "5.5.0"
6+
let version = "5.5.1"
77

88
let package = Package(
99
name: name,
@@ -13,7 +13,7 @@ let package = Package(
1313
.binaryTarget(
1414
name: name,
1515
url: "https://github.com/hypertrack/sdk-ios/releases/download/\(version)/\(name).xcframework.zip",
16-
checksum: "2deda180de0368b66a55f47bb83884e6097e7028745fc0b4ab0c68271f484b88"
16+
checksum: "327c2ef90e160d5137ab4a274346fd09448df8b6dd8ab90e970c58b4c3b707d6"
1717
)
1818
],
1919
swiftLanguageVersions: [.v5]

0 commit comments

Comments
 (0)