diff --git a/CHANGELOG.md b/CHANGELOG.md index cef4bef..d126179 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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). +## [4.7.0] - 2020-12-23 +### Changed +- Improved health event generation. +- Events that are stored in the SDK database and are older than 24 hours will be deleted automatically. +### Fixed +- Fixed issue with runtime error notifications. + ## [4.6.0] - 2020-11-09 ### Added - Tracking intent sync with the platform to improve tracking control. @@ -146,6 +153,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SDK now consumes less network data +[4.7.0]: https://github.com/hypertrack/sdk-ios/releases/tag/4.7.0 [4.6.0]: https://github.com/hypertrack/sdk-ios/releases/tag/4.6.0 [4.5.1]: https://github.com/hypertrack/sdk-ios/releases/tag/4.5.1 [4.5.0]: https://github.com/hypertrack/sdk-ios/releases/tag/4.5.0 diff --git a/HyperTrack.podspec b/HyperTrack.podspec index 2ea1e50..e68c1ea 100644 --- a/HyperTrack.podspec +++ b/HyperTrack.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |spec| # Root specification spec.name = "HyperTrack" - spec.version = "4.7.0-rc.3" + spec.version = "4.7.0" spec.summary = "A Movement tracking SDK for iOS" spec.description = "HyperTrack is a Movement tracking SDK" spec.license = { :type => "Copyright", :text => "Copyright (c) 2020 HyperTrack, Inc. (https://www.hypertrack.com)" } diff --git a/Package.swift b/Package.swift index 99f6865..0533bde 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription let name = "HyperTrack" -let version = "4.7.0-rc.3" +let version = "4.7.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: "2f04f18740e7e9b8d995cae5e5ca3cf20445b3ccc8c6acdf8b4f0c30346cb169" + checksum: "34462f98c6b4e69f72b8c10548604f5d494790cfef7a37e160c308601bbaee61" ) ], swiftLanguageVersions: [.v5]