Skip to content

Commit 5bda7f7

Browse files
committed
release: 8.49.2
1 parent dbe67d1 commit 5bda7f7

File tree

11 files changed

+15
-15
lines changed

11 files changed

+15
-15
lines changed

.github/last-release-runid

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14595118725
1+
14735024914

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.49.2
44

55
> ![Important]
66
> Version 8.21.0 introduced an issue for app launch profiling **only for macOS apps that run without a sandbox** (i.e. distributed outside the Mac App Store).

Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ let package = Package(
1212
targets: [
1313
.binaryTarget(
1414
name: "Sentry",
15-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.49.1/Sentry.xcframework.zip",
16-
checksum: "05ca333d2022c1fb17c08ce8b4c845bda56b8b9a14d9e58dad0be4d402b2df36" //Sentry-Static
15+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.49.2/Sentry.xcframework.zip",
16+
checksum: "85cf16b4fa2dd0ae58b1e5c62fd8c829c94e5dc92251c3a1de8e71b3fed195ef" //Sentry-Static
1717
),
1818
.binaryTarget(
1919
name: "Sentry-Dynamic",
20-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.49.1/Sentry-Dynamic.xcframework.zip",
21-
checksum: "e85968c3b8abf5bdbb0eb27808b19b9c2204632c369f60a866b20d8bc9ce6935" //Sentry-Dynamic
20+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.49.2/Sentry-Dynamic.xcframework.zip",
21+
checksum: "a35caf34219721170f53a3a25281f9f06efd2aa36847d1b604d83ee6b9ae424d" //Sentry-Dynamic
2222
),
2323
.target ( name: "SentrySwiftUI",
2424
dependencies: ["Sentry", "SentryInternal"],
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MARKETING_VERSION = 8.49.1
1+
MARKETING_VERSION = 8.49.2

Sentry.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Sentry"
3-
s.version = "8.49.1"
3+
s.version = "8.49.2"
44
s.summary = "Sentry client for cocoa"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentryPrivate.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentryPrivate"
3-
s.version = "8.49.1"
3+
s.version = "8.49.2"
44
s.summary = "Sentry Private Library."
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentrySwiftUI.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentrySwiftUI"
3-
s.version = "8.49.1"
3+
s.version = "8.49.2"
44
s.summary = "Sentry client for SwiftUI"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
1919
s.watchos.framework = 'WatchKit'
2020

2121
s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}"
22-
s.dependency 'Sentry/HybridSDK', "8.49.1"
22+
s.dependency 'Sentry/HybridSDK', "8.49.2"
2323
end

Sources/Configuration/SDK.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DYLIB_INSTALL_NAME_BASE = @rpath
1010
MACH_O_TYPE = mh_dylib
1111
FRAMEWORK_VERSION = A
1212

13-
CURRENT_PROJECT_VERSION = 8.49.1
13+
CURRENT_PROJECT_VERSION = 8.49.2
1414

1515
ALWAYS_SEARCH_USER_PATHS = NO
1616
CLANG_ENABLE_OBJC_ARC = YES

Sources/Configuration/SentrySwiftUI.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PRODUCT_NAME = SentrySwiftUI
2-
CURRENT_PROJECT_VERSION = 8.49.1
2+
CURRENT_PROJECT_VERSION = 8.49.2
33

44
MACOSX_DEPLOYMENT_TARGET = 10.15
55
IPHONEOS_DEPLOYMENT_TARGET = 13.0

Sources/Sentry/SentryMeta.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ @implementation SentryMeta
55
// Don't remove the static keyword. If you do the compiler adds the constant name to the global
66
// symbol table and it might clash with other constants. When keeping the static keyword the
77
// compiler replaces all occurrences with the value.
8-
static NSString *versionString = @"8.49.1";
8+
static NSString *versionString = @"8.49.2";
99
static NSString *sdkName = @"sentry.cocoa";
1010

1111
+ (NSString *)versionString

Tests/HybridSDKTest/HybridPod.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
1313
s.requires_arc = true
1414
s.frameworks = 'Foundation'
1515
s.swift_versions = "5.5"
16-
s.dependency "Sentry/HybridSDK", "8.49.1"
16+
s.dependency "Sentry/HybridSDK", "8.49.2"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)