Skip to content

Commit 5d85c1f

Browse files
authored
[HEAP-44455] Release 0.3.0 (#112)
1 parent dd2633a commit 5d85c1f

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.3.0]
11+
12+
### Added
13+
14+
- Added app version change and install events. These will fire when an environment first
15+
encounters a different application identifier, app name, or version at session start.
16+
1017
### Changed
1118

1219
- Changed process to retrieve iOS device model. 'sysctlbyname' is now used to retrieve the
@@ -62,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6269
- Support for manual capture within WKWebView.
6370
- Support for platforms targeting Swift: macOS, watchOS, iOS, iPadOS, tvOS.
6471

72+
[0.3.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.2.1...0.3.0
6573
[0.2.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.2.0...0.2.1
6674
[0.2.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.2...0.2.0
6775
[0.1.2]: https://github.com/heap/heap-swift-core-sdk/compare/0.1.1...0.1.2

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 = 2
8+
static let minor = 3
99

1010
/// Revision number.
11-
static let revision = 1
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.2.1'
3+
s.version = '0.3.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)