diff --git a/CHANGELOG.md b/CHANGELOG.md index 15f1268..121a009 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1] + +### Fixed + +- Native track calls now preserve session expiration dates set by heap.js when using + `Heap.attachWebView`. + +### Added + +- Added `Heap.shared.environmentId`, which returns the current environment ID or `nil` if not + recording. +- Added `sourceProperties` to `trackInteraction` (for use by autocapture frameworks). + ## [0.5.0] ### Fixed @@ -139,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for manual capture within WKWebView. - Support for platforms targeting Swift: macOS, watchOS, iOS, iPadOS, tvOS. -[Unreleased]: https://github.com/heap/heap-swift-core-sdk/compare/0.5.0...main +[Unreleased]: https://github.com/heap/heap-swift-core-sdk/compare/0.5.1...main +[0.5.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.5.0...0.5.1 [0.5.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.4.0...0.5.0 [0.4.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.3.1...0.4.0 [0.3.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.3.0...0.3.1 diff --git a/Development/Sources/HeapSwiftCore/Version.swift b/Development/Sources/HeapSwiftCore/Version.swift index 77b916e..9f098dd 100644 --- a/Development/Sources/HeapSwiftCore/Version.swift +++ b/Development/Sources/HeapSwiftCore/Version.swift @@ -8,7 +8,7 @@ struct Version { static let minor = 5 /// Revision number. - static let revision = 0 + static let revision = 1 /// Optional pre-release version static let prerelease: String? = nil diff --git a/HeapSwiftCore.podspec b/HeapSwiftCore.podspec index d140f76..cff972b 100644 --- a/HeapSwiftCore.podspec +++ b/HeapSwiftCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'HeapSwiftCore' - s.version = '0.5.0' + s.version = '0.5.1' s.license = { :type => 'MIT' } s.summary = 'The core Heap library used for apps on Apple platforms.' s.homepage = 'https://heap.io'