Skip to content

Commit

Permalink
[PA-2787] 0.5.1 Release (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnickel committed Feb 26, 2024
1 parent eb79982 commit dfd194d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Development/Sources/HeapSwiftCore/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion HeapSwiftCore.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit dfd194d

Please sign in to comment.