Skip to content

Commit 3b9a8e6

Browse files
committed
release: 8.18.0
1 parent 2f9c5f9 commit 3b9a8e6

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.18.0
44

55
### Features
66

Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@
12621262
"$(inherited)",
12631263
"@executable_path/Frameworks",
12641264
);
1265-
MARKETING_VERSION = 8.17.2;
1265+
MARKETING_VERSION = 8.18.0;
12661266
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
12671267
PRODUCT_NAME = "$(TARGET_NAME)";
12681268
PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift";
@@ -1291,7 +1291,7 @@
12911291
"$(inherited)",
12921292
"@executable_path/Frameworks",
12931293
);
1294-
MARKETING_VERSION = 8.17.2;
1294+
MARKETING_VERSION = 8.18.0;
12951295
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
12961296
PRODUCT_NAME = "$(TARGET_NAME)";
12971297
PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift";
@@ -1938,7 +1938,7 @@
19381938
"$(inherited)",
19391939
"@executable_path/Frameworks",
19401940
);
1941-
MARKETING_VERSION = 8.17.2;
1941+
MARKETING_VERSION = 8.18.0;
19421942
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip";
19431943
PRODUCT_NAME = "$(TARGET_NAME)";
19441944
PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift.Clip";
@@ -1973,7 +1973,7 @@
19731973
"$(inherited)",
19741974
"@executable_path/Frameworks",
19751975
);
1976-
MARKETING_VERSION = 8.17.2;
1976+
MARKETING_VERSION = 8.18.0;
19771977
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip";
19781978
PRODUCT_NAME = "$(TARGET_NAME)";
19791979
PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift.Clip";

Sentry.podspec

Lines changed: 2 additions & 2 deletions
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.17.2"
3+
s.version = "8.18.0"
44
s.summary = "Sentry client for cocoa"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"
@@ -27,7 +27,7 @@ Pod::Spec.new do |s|
2727
}
2828

2929
s.default_subspecs = ['Core']
30-
s.dependency "SentryPrivate", "8.17.2"
30+
s.dependency "SentryPrivate", "8.18.0"
3131

3232
s.subspec 'Core' do |sp|
3333
sp.source_files = "Sources/Sentry/**/*.{h,hpp,m,mm,c,cpp}",

SentryPrivate.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 = "SentryPrivate"
3-
s.version = "8.17.2"
3+
s.version = "8.18.0"
44
s.summary = "Sentry Private Library."
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentrySwiftUI.podspec

Lines changed: 2 additions & 2 deletions
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.17.2"
3+
s.version = "8.18.0"
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', "8.17.2"
22+
s.dependency 'Sentry', "8.18.0"
2323
end

Sources/Configuration/Sentry.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ PRODUCT_NAME = Sentry
22
INFOPLIST_FILE = Sources/Resources/Info.plist
33
PRODUCT_BUNDLE_IDENTIFIER = io.sentry.Sentry
44

5-
CURRENT_PROJECT_VERSION = 8.17.2
5+
CURRENT_PROJECT_VERSION = 8.18.0
66

77
MODULEMAP_FILE = $(SRCROOT)/Sources/Resources/Sentry.modulemap
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PRODUCT_NAME = SentryPrivate
22
MACH_O_TYPE = staticlib
3-
CURRENT_PROJECT_VERSION = 8.17.2
3+
CURRENT_PROJECT_VERSION = 8.18.0

Sources/Sentry/SentryMeta.m

Lines changed: 1 addition & 1 deletion
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.17.2";
8+
static NSString *versionString = @"8.18.0";
99
static NSString *sdkName = @"sentry.cocoa";
1010

1111
+ (NSString *)versionString

Tests/HybridSDKTest/HybridPod.podspec

Lines changed: 1 addition & 1 deletion
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.17.2"
16+
s.dependency "Sentry/HybridSDK", "8.18.0"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)