Skip to content

Commit

Permalink
Merge pull request #290 from rollbar/fix_flutter
Browse files Browse the repository at this point in the history
Import sqlite3 as a sys header to prevent conflicts with Flutter sqlite3
  • Loading branch information
matux authored Jun 5, 2023
2 parents 5eb6ce2 + bb4da64 commit b971aa1
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Release Notes

### 3.0.2

- Import sqlite3 as a system header to prevent conflicts with Flutter's sqlite3 platform-specific libraries.

### 3.0.1

- This version brings support for Cocoapods and workarounds a [Cocoapods issue](https://github.com/CocoaPods/CocoaPods/issues/11839) in Xcode 14.3.
Expand Down
2 changes: 1 addition & 1 deletion Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Rollbar"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarAUL.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarAUL"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCocoaLumberjack.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarCocoaLumberjack"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCommon.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarCommon"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarCrashReport.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarCrashReport"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarDeploys.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarDeploys"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
2 changes: 1 addition & 1 deletion RollbarNotifier.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RollbarNotifier"
s.version = "3.0.1"
s.version = "3.0.2"
s.summary = "Application or client side SDK for interacting with the Rollbar API Server."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"3.0.1";
static NSString * const NOTIFIER_VERSION = @"3.0.2";

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

@import RollbarCommon;

#import "sqlite3.h"
#import <sqlite3.h>

//======================================================================================================================
#pragma mark - Sqlite command execution callbacks
Expand Down

0 comments on commit b971aa1

Please sign in to comment.