Skip to content

Commit

Permalink
Releasing 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
build-heap committed May 22, 2023
1 parent 4cc16ce commit e3a693a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.1]

### Fixed

- Updated minimum HeapSwiftCore CocoaPods version to 0.2 so it's not pinned to 0.1.x.

## [0.2.0]

### Added
Expand Down Expand Up @@ -42,7 +48,8 @@ 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.1.3]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.1.3
[0.2.1]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.2.1
[0.2.0]: https://github.com/heap/heap-ios-autocapture-sdk/releases/tag/0.2.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
21 changes: 21 additions & 0 deletions HeapIOSAutocapture.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'HeapIOSAutocapture'
s.version = '0.2.1'
s.license = { :type => 'MIT' }
s.summary = 'HeapIOSAutocapture is an iOS autocapture library for UIKit-based apps.'
s.homepage = 'https://heap.io'
s.author = 'Heap Inc.'
s.source = { :http => "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-#{s.version}.zip", :type => 'zip' }

s.requires_arc = true
s.ios.deployment_target = '13.0'

s.cocoapods_version = '>= 1.7.0'

s.dependency 'HeapSwiftCore', '~> 0.2'

s.source_files = 'Sources/HeapIOSAutocapture/**/*.swift'
s.vendored_frameworks = 'HeapIOSAutocaptureImplementation.xcframework'

s.swift_versions = ['5.0']
end
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ let package = Package(
]),
.binaryTarget(
name: "HeapIOSAutocaptureImplementation",
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.2.0.zip",
checksum: "05822fcf255f1dfb0c2d3b01e8b16329458365211618c32837d68908da7e1fd5"
url: "https://cdn.heapanalytics.com/ios/heap-ios-autocapture-0.2.1.zip",
checksum: "f5d107473f1ff4b683f22e4c2d8585c968568cfcfc61a694c1c9b635627cb3e5"
),
]
)

0 comments on commit e3a693a

Please sign in to comment.