Skip to content

Commit

Permalink
Merge release/7.0.0-alpha.1 into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Hofmann committed Mar 10, 2021
2 parents 889a94f + 06f8c50 commit ab03268
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Samples/iOS-Swift/iOS-Swift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "7.0.0-alpha.0";
MARKETING_VERSION = "7.0.0-alpha.1";
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTS_MACCATALYST = NO;
Expand All @@ -423,7 +423,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = "7.0.0-alpha.0";
MARKETING_VERSION = "7.0.0-alpha.1";
PRODUCT_BUNDLE_IDENTIFIER = "io.sentry.sample.iOS-Swift";
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "match AppStore io.sentry.sample.iOS-Swift";
Expand Down
2 changes: 1 addition & 1 deletion Sentry.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Sentry"
s.version = "7.0.0-alpha.0"
s.version = "7.0.0-alpha.1"
s.summary = "Sentry client for cocoa"
s.homepage = "https://github.com/getsentry/sentry-cocoa"
s.license = "mit"
Expand Down
2 changes: 1 addition & 1 deletion Sources/Configuration/Sentry.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ MACH_O_TYPE = mh_dylib
FRAMEWORK_VERSION = A

PRODUCT_NAME = Sentry
CURRENT_PROJECT_VERSION = 7.0.0-alpha.0
CURRENT_PROJECT_VERSION = 7.0.0-alpha.1
INFOPLIST_FILE = Sources/Sentry/Info.plist
PRODUCT_BUNDLE_IDENTIFIER = io.sentry.Sentry
ALWAYS_SEARCH_USER_PATHS = NO
Expand Down
2 changes: 1 addition & 1 deletion Sources/Sentry/SentryMeta.m
Original file line number Diff line number Diff line change
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 *const versionString = @"7.0.0-alpha.0";
static NSString *const versionString = @"7.0.0-alpha.1";
static NSString *const sdkName = @"sentry.cocoa";

+ (NSString *)versionString
Expand Down

0 comments on commit ab03268

Please sign in to comment.