Skip to content

Commit

Permalink
[HEAP-44455] Release 0.3.0 (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnickel authored Jun 6, 2023
1 parent dd2633a commit 5d85c1f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0]

### Added

- Added app version change and install events. These will fire when an environment first
encounters a different application identifier, app name, or version at session start.

### Changed

- Changed process to retrieve iOS device model. 'sysctlbyname' is now used to retrieve the
Expand Down Expand Up @@ -62,6 +69,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.3.0]: https://github.com/heap/heap-swift-core-sdk/compare/0.2.1...0.3.0
[0.2.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.2.0...0.2.1
[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
Expand Down
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 = 2
static let minor = 3

/// Revision number.
static let revision = 1
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.2.1'
s.version = '0.3.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 5d85c1f

Please sign in to comment.