Skip to content

Commit

Permalink
Releasing 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
build-heap committed Mar 29, 2023
1 parent 057b51d commit 8ea2abe
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 6 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2]

### Fixed

- Restructured package so HeapSwiftCore can be used as a dependency.

## [0.1.1]

### Fixed

- [HEAP-41356] Fixed error when sending nil to certain sendEvent arguments
- Fixed error when sending nil to certain sendEvent arguments.

## [0.1.0]

### Added

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

[0.1.2]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.1.2
[0.1.1]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.1.1
[0.1.0]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.1.0
15 changes: 12 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@ let package = Package(
name: "HeapIOSAutocapture",
targets: ["HeapIOSAutocapture"])
],
dependencies: [
.package(url: "https://github.com/heap/heap-swift-core-sdk.git", from: "0.1.2"),
],
targets: [
.binaryTarget(
.target(
name: "HeapIOSAutocapture",
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.1.1.zip",
checksum: "a43b0dc9caabcb3d980e33efce1695f87001b8f41d33c60beefc3d6e3d65fb42"
dependencies: [
.product(name: "HeapSwiftCore", package: "heap-swift-core-sdk"),
"HeapIOSAutocaptureImplementation",
]),
.binaryTarget(
name: "HeapIOSAutocaptureImplementation",
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.1.2.zip",
checksum: "aab304a33872ef265f4c25fe50d670caa737458a809b683e93c21910ffb65b07"
),
]
)
12 changes: 12 additions & 0 deletions Sources/HeapIOSAutocapture/HeapIOSAutocapture.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@_exported import HeapIOSAutocaptureImplementation
import HeapSwiftCore

extension Heap {

public class iOSAutocaptureSource {

public static func register(isDefault: Bool = false) {
__HeapIOSAutocaptureSource.register(coreSdk: Heap.shared, isDefault: isDefault)
}
}
}
1 change: 0 additions & 1 deletion Sources/HeapIOSAutocaptureWrapper/Exports.swift

This file was deleted.

0 comments on commit 8ea2abe

Please sign in to comment.