Skip to content

Commit ee41788

Browse files
authored
[HEAP-43946] Release 0.2.0 (#102)
1 parent 35b586f commit ee41788

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0]
11+
1012
### Added
1113

12-
- Added option startSessionImmediately to begin tracking sessions immediately.
14+
- Added option `startSessionImmediately` to begin tracking sessions immediately.
1315

1416
### Changed
1517

16-
- Default behavior for sessions has been changed (startSessionImmediately = false).
17-
Tracking of sessions is now delayed until an event is tracked:
18+
- Default behavior for sessions has been changed (`startSessionImmediately = false`).
19+
Tracking of sessions is now delayed until one of the following is called:
1820
- `Heap.shared.track()`
1921
- `Heap.shared.trackPageview()`
2022
- `Heap.shared.trackInteraction()`
@@ -47,6 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4749
- Support for manual capture within WKWebView.
4850
- Support for platforms targeting Swift: macOS, watchOS, iOS, iPadOS, tvOS.
4951

52+
[0.2.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.2...0.2.0
5053
[0.1.2]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.1...0.1.2
5154
[0.1.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.0...0.1.1
5255
[0.1.0]: https://github.com/heap/heap-swift-core-sdk/releases/tag/0.1.0

Development/Sources/HeapSwiftCore/Version.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ struct Version {
55
static let major = 0
66

77
/// Minor version.
8-
static let minor = 1
8+
static let minor = 2
99

1010
/// Revision number.
11-
static let revision = 2
11+
static let revision = 0
1212

1313
/// Optional pre-release version
1414
static let prerelease: String? = nil

HeapSwiftCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'HeapSwiftCore'
3-
s.version = '0.1.2'
3+
s.version = '0.2.0'
44
s.license = { :type => 'MIT' }
55
s.summary = 'The core Heap library used for apps on Apple platforms.'
66
s.homepage = 'https://heap.io'

0 commit comments

Comments
 (0)