diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e9ecaaf..8501cb32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Rollbar.podspec b/Rollbar.podspec index cc16e920..c24dbf7f 100644 --- a/Rollbar.podspec +++ b/Rollbar.podspec @@ -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. diff --git a/RollbarAUL.podspec b/RollbarAUL.podspec index 8b6bb1e9..314c6f0c 100644 --- a/RollbarAUL.podspec +++ b/RollbarAUL.podspec @@ -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. diff --git a/RollbarCocoaLumberjack.podspec b/RollbarCocoaLumberjack.podspec index 5f82e559..90d3d4bd 100644 --- a/RollbarCocoaLumberjack.podspec +++ b/RollbarCocoaLumberjack.podspec @@ -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. diff --git a/RollbarCommon.podspec b/RollbarCommon.podspec index facceea5..81daddc4 100644 --- a/RollbarCommon.podspec +++ b/RollbarCommon.podspec @@ -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. diff --git a/RollbarCrashReport.podspec b/RollbarCrashReport.podspec index 7006a018..ea277e1f 100644 --- a/RollbarCrashReport.podspec +++ b/RollbarCrashReport.podspec @@ -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. diff --git a/RollbarDeploys.podspec b/RollbarDeploys.podspec index a4152ac2..51927c22 100644 --- a/RollbarDeploys.podspec +++ b/RollbarDeploys.podspec @@ -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. diff --git a/RollbarNotifier.podspec b/RollbarNotifier.podspec index d5495db7..6f6b615c 100644 --- a/RollbarNotifier.podspec +++ b/RollbarNotifier.podspec @@ -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. diff --git a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m index b2cd0786..7f3d4d11 100644 --- a/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m +++ b/RollbarNotifier/Sources/RollbarNotifier/DTOs/RollbarConfig.m @@ -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"; diff --git a/RollbarNotifier/Sources/RollbarNotifier/RollbarPayloadRepository.m b/RollbarNotifier/Sources/RollbarNotifier/RollbarPayloadRepository.m index 8183917c..068ec5c8 100644 --- a/RollbarNotifier/Sources/RollbarNotifier/RollbarPayloadRepository.m +++ b/RollbarNotifier/Sources/RollbarNotifier/RollbarPayloadRepository.m @@ -4,7 +4,7 @@ @import RollbarCommon; -#import "sqlite3.h" +#import //====================================================================================================================== #pragma mark - Sqlite command execution callbacks