Skip to content

Commit b971aa1

Browse files
authored
Merge pull request #290 from rollbar/fix_flutter
Import sqlite3 as a sys header to prevent conflicts with Flutter sqlite3
2 parents 5eb6ce2 + bb4da64 commit b971aa1

File tree

10 files changed

+13
-9
lines changed

10 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Release Notes
44

5+
### 3.0.2
6+
7+
- Import sqlite3 as a system header to prevent conflicts with Flutter's sqlite3 platform-specific libraries.
8+
59
### 3.0.1
610

711
- This version brings support for Cocoapods and workarounds a [Cocoapods issue](https://github.com/CocoaPods/CocoaPods/issues/11839) in Xcode 14.3.

Rollbar.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 = "Rollbar"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarAUL.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 = "RollbarAUL"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCocoaLumberjack.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 = "RollbarCocoaLumberjack"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCommon.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 = "RollbarCommon"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarCrashReport.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 = "RollbarCrashReport"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarDeploys.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 = "RollbarDeploys"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier.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 = "RollbarNotifier"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
55
s.description = <<-DESC
66
Find, fix, and resolve errors with Rollbar.

RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#pragma mark - constants
1616

17-
static NSString * const NOTIFIER_VERSION = @"3.0.1";
17+
static NSString * const NOTIFIER_VERSION = @"3.0.2";
1818

1919
static NSString * const NOTIFIER_NAME = @"rollbar-apple";
2020

RollbarNotifier/Sources/RollbarNotifier/RollbarPayloadRepository.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@import RollbarCommon;
66

7-
#import "sqlite3.h"
7+
#import <sqlite3.h>
88

99
//======================================================================================================================
1010
#pragma mark - Sqlite command execution callbacks

0 commit comments

Comments
 (0)