Skip to content

Commit

Permalink
[HEAP-43946] Release 0.2.0 (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnickel authored May 16, 2023
1 parent 35b586f commit ee41788
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0]

### Added

- Added option startSessionImmediately to begin tracking sessions immediately.
- Added option `startSessionImmediately` to begin tracking sessions immediately.

### Changed

- Default behavior for sessions has been changed (startSessionImmediately = false).
Tracking of sessions is now delayed until an event is tracked:
- Default behavior for sessions has been changed (`startSessionImmediately = false`).
Tracking of sessions is now delayed until one of the following is called:
- `Heap.shared.track()`
- `Heap.shared.trackPageview()`
- `Heap.shared.trackInteraction()`
Expand Down Expand Up @@ -47,6 +49,7 @@ 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.

[0.2.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.2...0.2.0
[0.1.2]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.1...0.1.2
[0.1.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/heap/heap-swift-core-sdk/releases/tag/0.1.0
4 changes: 2 additions & 2 deletions Development/Sources/HeapSwiftCore/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ struct Version {
static let major = 0

/// Minor version.
static let minor = 1
static let minor = 2

/// Revision number.
static let revision = 2
static let revision = 0

/// 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.1.2'
s.version = '0.2.0'
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 ee41788

Please sign in to comment.