Skip to content

Commit aa4eddf

Browse files
fix: XCFramework Path (#3760)
* fix path * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: Philipp Hofmann <[email protected]> --------- Co-authored-by: Philipp Hofmann <[email protected]>
1 parent 18d491a commit aa4eddf

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Checksum error when resolving the SDK via SPM (#3760)
8+
39
## 8.22.0
10+
**Warning:** this version is not working with SPM
411

512
### Improvements
613

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ let package = Package(
1212
targets: [
1313
.binaryTarget(
1414
name: "Sentry",
15-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.22.0-alpha.0/Sentry.xcframework.zip",
15+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.22.0/Sentry.xcframework.zip",
1616
checksum: "a6b8d72656318314baf3756c8a9cf4c923fa94abaaca4df0838ba04adcd3d246" //Sentry-Static
1717
),
1818
.binaryTarget(
1919
name: "Sentry-Dynamic",
20-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.22.0-alpha.0/Sentry-Dynamic.xcframework.zip",
20+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.22.0/Sentry-Dynamic.xcframework.zip",
2121
checksum: "410ffbb6eb325d579086b6434d720831b2984825f98496ff3f770dc1c532e32c" //Sentry-Dynamic
2222
),
2323
.target ( name: "SentrySwiftUI",

0 commit comments

Comments
 (0)