Skip to content

Commit fc3b847

Browse files
Releasing 0.8.1
1 parent 7d315b7 commit fc3b847

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.1]
9+
10+
### Fixed
11+
12+
- Fixed an issue where the framework's Info.plist had an invalid minimum OS version, preventing App
13+
Store releases.
14+
815
## [0.8.0]
916

10-
### Changes
17+
### Changed
1118

1219
- The SDK is now distributed as a dynamic XCFramework.
1320
- The SDK now depends on the binary-distributed CSSwiftProtobuf instead of SwiftProtobuf from source.
@@ -214,6 +221,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
214221
- Support for manual capture within WKWebView.
215222
- Support for platforms targeting Swift: macOS, watchOS, iOS, iPadOS, tvOS.
216223

224+
[0.8.1]: https://github.com/heap/heap-swift-core-sdk/releases/tag/0.8.1
217225
[0.8.0]: https://github.com/heap/heap-swift-core-sdk/releases/tag/0.8.0
218226
[0.7.2]: https://github.com/heap/heap-swift-core-sdk/compare/0.7.1...0.7.2
219227
[0.7.1]: https://github.com/heap/heap-swift-core-sdk/compare/0.7.0...0.7.1

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.8.0'
3+
s.version = '0.8.1'
44
s.summary = 'The core Heap library used for apps on Apple platforms.'
55
s.homepage = 'https://docs.contentsquare.com/ios'
66
s.author = { 'Contentsquare' => '[email protected]' }

Package.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1-
// swift-tools-version:5.7
1+
// swift-tools-version:5.9
22

33
import PackageDescription
44

55
let package = Package(
66
name: "HeapSwiftCore",
77
platforms: [
8-
.macOS(.v11),
98
.iOS(.v13),
10-
.watchOS(.v6),
9+
.macCatalyst(.v13),
10+
.macOS(.v11),
1111
.tvOS(.v13),
12+
.watchOS(.v6),
13+
.visionOS(.v1),
1214
],
1315
products: [
1416
.library(name: "HeapSwiftCore", targets: [
@@ -28,8 +30,8 @@ let package = Package(
2830
),
2931
.binaryTarget(
3032
name: "HeapSwiftCore",
31-
url: "https://github.com/heap/heap-swift-core-sdk/releases/download/0.8.0/package.zip",
32-
checksum: "79ab0348e8113263b5957b4c9f9573e7e63d797ad3868541710302ff3cc30c1d"
33+
url: "https://github.com/heap/heap-swift-core-sdk/releases/download/0.8.1/package.zip",
34+
checksum: "264714786d9e766ad25b2f0af02797dce1ad2c0b99f5ee32a389f3e620ca25ef"
3335
)
3436
],
3537
swiftLanguageVersions: [.v5]

0 commit comments

Comments
 (0)