Skip to content

Commit

Permalink
Merge branch 'release/8.12.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Sep 19, 2023
2 parents c40576a + 14aa6e4 commit 51307b7
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 8.12.0

### Fixes

Expand Down
8 changes: 4 additions & 4 deletions Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
Expand Up @@ -1214,7 +1214,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 8.11.0;
MARKETING_VERSION = 8.12.0;
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift";
Expand Down Expand Up @@ -1243,7 +1243,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 8.11.0;
MARKETING_VERSION = 8.12.0;
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift";
Expand Down Expand Up @@ -1890,7 +1890,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 8.11.0;
MARKETING_VERSION = 8.12.0;
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "match Development io.sentry.sample.iOS-Swift.Clip";
Expand Down Expand Up @@ -1925,7 +1925,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 8.11.0;
MARKETING_VERSION = 8.12.0;
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift.Clip";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift.Clip";
Expand Down
4 changes: 2 additions & 2 deletions Sentry.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sentry"
s.version = "8.11.0"
s.version = "8.12.0"
s.summary = "Sentry client for cocoa"
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
Expand All @@ -27,7 +27,7 @@ Pod::Spec.new do |s|
}

s.default_subspecs = ['Core']
s.dependency "SentryPrivate", "8.11.0"
s.dependency "SentryPrivate", "8.12.0"

s.subspec 'Core' do |sp|
sp.source_files = "Sources/Sentry/**/*.{h,hpp,m,mm,c,cpp}",
Expand Down
2 changes: 1 addition & 1 deletion SentryPrivate.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SentryPrivate"
s.version = "8.11.0"
s.version = "8.12.0"
s.summary = "Sentry Private Library."
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
Expand Down
4 changes: 2 additions & 2 deletions SentrySwiftUI.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SentrySwiftUI"
s.version = "8.11.0"
s.version = "8.12.0"
s.summary = "Sentry client for SwiftUI"
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
Expand All @@ -19,5 +19,5 @@ Pod::Spec.new do |s|
s.watchos.framework = 'WatchKit'

s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}"
s.dependency 'Sentry', "8.11.0"
s.dependency 'Sentry', "8.12.0"
end
2 changes: 1 addition & 1 deletion Sources/Configuration/Sentry.xcconfig
Expand Up @@ -2,6 +2,6 @@ PRODUCT_NAME = Sentry
INFOPLIST_FILE = Sources/Sentry/Info.plist
PRODUCT_BUNDLE_IDENTIFIER = io.sentry.Sentry

CURRENT_PROJECT_VERSION = 8.11.0
CURRENT_PROJECT_VERSION = 8.12.0

MODULEMAP_FILE = $(SRCROOT)/Sources/Sentry/Sentry.modulemap
2 changes: 1 addition & 1 deletion Sources/Configuration/SentryPrivate.xcconfig
@@ -1,3 +1,3 @@
PRODUCT_NAME = SentryPrivate
MACH_O_TYPE = staticlib
CURRENT_PROJECT_VERSION = 8.11.0
CURRENT_PROJECT_VERSION = 8.12.0
2 changes: 1 addition & 1 deletion Sources/Sentry/SentryMeta.m
Expand Up @@ -5,7 +5,7 @@ @implementation SentryMeta
// Don't remove the static keyword. If you do the compiler adds the constant name to the global
// symbol table and it might clash with other constants. When keeping the static keyword the
// compiler replaces all occurrences with the value.
static NSString *versionString = @"8.11.0";
static NSString *versionString = @"8.12.0";
static NSString *sdkName = @"sentry.cocoa";

+ (NSString *)versionString
Expand Down
2 changes: 1 addition & 1 deletion Tests/HybridSDKTest/HybridPod.podspec
Expand Up @@ -13,6 +13,6 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.frameworks = 'Foundation'
s.swift_versions = "5.5"
s.dependency "Sentry/HybridSDK", "8.11.0"
s.dependency "Sentry/HybridSDK", "8.12.0"
s.source_files = "HybridTest.swift"
end

0 comments on commit 51307b7

Please sign in to comment.