Skip to content

Commit

Permalink
Merge pull request #1572 from bugsnag/release-v6.27.2
Browse files Browse the repository at this point in the history
Release v6.27.2
  • Loading branch information
robert-smartbear committed Jul 24, 2023
2 parents 325d191 + 91e781b commit 2f373f2
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ author_url: "https://www.bugsnag.com"
author: "Bugsnag Inc"
clean: false # avoid deleting docs/.git
framework_root: "Bugsnag"
github_file_prefix: "https://github.com/bugsnag/bugsnag-cocoa/tree/v6.27.1/Bugsnag"
github_file_prefix: "https://github.com/bugsnag/bugsnag-cocoa/tree/v6.27.2/Bugsnag"
github_url: "https://github.com/bugsnag/bugsnag-cocoa"
hide_documentation_coverage: true
module: "Bugsnag"
module_version: "6.27.1"
module_version: "6.27.2"
objc: true
output: "docs"
readme: "README.md"
Expand Down
4 changes: 2 additions & 2 deletions Bugsnag.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Bugsnag",
"version": "6.27.1",
"version": "6.27.2",
"summary": "The Bugsnag crash reporting framework for Apple platforms.",
"homepage": "https://bugsnag.com",
"license": "MIT",
Expand All @@ -9,7 +9,7 @@
},
"source": {
"git": "https://github.com/bugsnag/bugsnag-cocoa.git",
"tag": "v6.27.1"
"tag": "v6.27.2"
},
"ios": {
"frameworks": [
Expand Down
2 changes: 1 addition & 1 deletion Bugsnag/Payload/BugsnagNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ - (instancetype)init {
#else
_name = @"Bugsnag Objective-C";
#endif
_version = @"6.27.1";
_version = @"6.27.2";
_url = @"https://github.com/bugsnag/bugsnag-cocoa";
_dependencies = @[];
}
Expand Down
4 changes: 2 additions & 2 deletions Bugsnag/Storage/BSGFileLocations.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static BOOL ensureDirExists(NSString *path) {
return YES;
}

static NSString *cachesDirectory() {
static NSString *cachesDirectory(void) {
// Default to an unusable location that will always fail.
static NSString* rootPath = @"/";

Expand Down Expand Up @@ -75,7 +75,7 @@ static BOOL ensureDirExists(NSString *path) {
return rootPath;
}

static NSString *bugsnagSharedPath() {
static NSString *bugsnagSharedPath(void) {
// Default to an unusable location that will always fail.
static NSString* sharedPath = @"/";

Expand Down
8 changes: 4 additions & 4 deletions Bugsnag/Storage/BSGPersistentDeviceID.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ - (instancetype)initWithExternalID:(nonnull NSString *)externalID internalID:(no
#pragma mark Generator

// Used to compute deviceId; mimics +[BSG_KSSystemInfo CPUArchForCPUType:subType:]
static NSString * _Nullable cpuArch() {
static NSString * _Nullable cpuArch(void) {
cpu_type_t cpuType = 0;
size_t size = sizeof cpuType;
if (sysctlbyname("hw.cputype", &cpuType, &size, NULL, 0) != 0) {
Expand Down Expand Up @@ -112,7 +112,7 @@ static bool isAllZeroes(NSData * _Nullable data) {
return true;
}

static NSMutableData * _Nonnull generateIdentificationData() {
static NSMutableData * _Nonnull generateIdentificationData(void) {
NSMutableData *data = nil;

#if TARGET_OS_WATCH
Expand Down Expand Up @@ -156,11 +156,11 @@ static bool isAllZeroes(NSData * _Nullable data) {
return hash;
}

static NSString * _Nonnull generateExternalDeviceID() {
static NSString * _Nonnull generateExternalDeviceID(void) {
return computeHash(generateIdentificationData());
}

static NSString * _Nonnull generateInternalDeviceID() {
static NSString * _Nonnull generateInternalDeviceID(void) {
// ROAD-1488: internal device ID should be different.
uint8_t additionalData[] = {251};
NSMutableData *data = generateIdentificationData();
Expand Down
6 changes: 3 additions & 3 deletions BugsnagNetworkRequestPlugin.podspec.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "BugsnagNetworkRequestPlugin",
"version": "6.27.1",
"version": "6.27.2",
"summary": "Network request monitoring support for Bugsnag.",
"homepage": "https://bugsnag.com",
"license": "MIT",
"authors": {
"Bugsnag": "[email protected]"
},
"readme": "https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/v6.27.1/BugsnagNetworkRequestPlugin/README.md",
"readme": "https://raw.githubusercontent.com/bugsnag/bugsnag-cocoa/v6.27.2/BugsnagNetworkRequestPlugin/README.md",
"source": {
"git": "https://github.com/bugsnag/bugsnag-cocoa.git",
"tag": "v6.27.1"
"tag": "v6.27.2"
},
"dependencies": {
"Bugsnag": "~> 6.13"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

## 6.27.1 (2023-07-24)
## 6.27.2 (2023-07-24)

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>6.27.1</string>
<string>6.27.2</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Tests/BugsnagTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>6.27.1</string>
<string>6.27.2</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion Tests/TestHost-iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>6.27.1</string>
<string>6.27.2</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.27.1
6.27.2

0 comments on commit 2f373f2

Please sign in to comment.