Skip to content

Commit

Permalink
Merge branch 'release/8.4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Apr 4, 2023
2 parents c0b4b71 + 92a6472 commit ff5c1d8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 8.4.0

### Features

Expand All @@ -11,7 +11,7 @@
### Fixes

- Correctly track and send GPU frame render data in profiles (#2823)
- Xcode 14.3 compiling issue regarding functions declaration with no prototype (#2852)
- Xcode 14.3 compiling issue regarding functions declaration with no prototype (#2852)

## 8.3.3

Expand Down
4 changes: 2 additions & 2 deletions 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 = "8.3.3"
s.version = "8.4.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.3.3"
s.dependency "SentryPrivate", "8.4.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SentryPrivate"
s.version = "8.3.3"
s.version = "8.4.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SentrySwiftUI"
s.version = "8.3.3"
s.version = "8.4.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.3.3"
s.dependency 'Sentry', "8.4.0"
end
2 changes: 1 addition & 1 deletion Sources/Configuration/Sentry.xcconfig
Original file line number Diff line number Diff line change
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.3.3
CURRENT_PROJECT_VERSION = 8.4.0

MODULEMAP_FILE = $(SRCROOT)/Sources/Sentry/Sentry.modulemap
2 changes: 1 addition & 1 deletion Sources/Configuration/SentryPrivate.xcconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PRODUCT_NAME = SentryPrivate
MACH_O_TYPE = staticlib
CURRENT_PROJECT_VERSION = 8.3.3
CURRENT_PROJECT_VERSION = 8.4.0
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 *versionString = @"8.3.3";
static NSString *versionString = @"8.4.0";
static NSString *sdkName = @"sentry.cocoa";

+ (NSString *)versionString
Expand Down

0 comments on commit ff5c1d8

Please sign in to comment.