Skip to content

Commit

Permalink
Releasing 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
build-heap committed Apr 1, 2024
1 parent bd0183d commit 93670ae
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0]

### Fixed

- Fixed code signing when targeting Catalyst. The issue was caused by the zip file not preserving
symlinks.

### Changed

- "Target IVar" capture is now disabled by default since certain code patterns can cause Swift's
`Mirror` to crash. This can be re-enabled by starting Heap with
`.enableInteractionReferencingPropertyCapture: true`.

## [0.4.0]

### Fixed
Expand Down Expand Up @@ -90,6 +103,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Autocapture SDK targeting iOS 13.0+ and Xcode 14.0+.

[0.5.0]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.5.0
[0.4.0]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.4.0
[0.3.0]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.3.0
[0.2.1]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.2.1
Expand Down
2 changes: 1 addition & 1 deletion HeapIOSAutocapture.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HeapIOSAutocapture'
s.version = '0.4.0'
s.version = '0.5.0'
s.license = { :type => 'MIT' }
s.summary = 'HeapIOSAutocapture is an iOS autocapture library for UIKit-based apps.'
s.homepage = 'https://heap.io'
Expand Down
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ let package = Package(
targets: ["HeapIOSAutocapture"])
],
dependencies: [
.package(url: "https://github.com/heap/heap-swift-core-sdk.git", from: "0.3.0"),
.package(url: "https://github.com/heap/heap-swift-core-sdk.git", from: "0.5.2"),
],
targets: [
.target(
Expand All @@ -26,8 +26,8 @@ let package = Package(
]),
.binaryTarget(
name: "HeapIOSAutocaptureImplementation",
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.4.0.zip",
checksum: "d60cec87d6736406f55b53718814a3eed3799995b25193466b6c7e11a99cf391"
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.5.0.zip",
checksum: "ba773b99c578054b77596d1c68b197a877246a1b9e691a6f944dd9caa84e2025"
),
]
)

0 comments on commit 93670ae

Please sign in to comment.