Skip to content

Commit

Permalink
Merge pull request #328 from WideSpectrumComputing/ref#285-Multiproje…
Browse files Browse the repository at this point in the history
…ctWorkspace

in preparation to v2.0.0-alpha21
  • Loading branch information
akornich authored Nov 7, 2020
2 parents d15a317 + e6ee967 commit 86029b4
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 19 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ The change log has moved to this repo's [GitHub Releases Page](https://github.co
## Release Notes

**2.0.0** Preliminary Notes
- feat: added RollbarKSCrash
- refactor: split out RollbarCommon, RollbarNotifier, RollbarDeploys
- refactor: added use of lightweight generics
- refactor: added use nullability attributes
- refactor: removed RollbarConfiguration and replaced it with RollbarConfig
Expand Down
6 changes: 3 additions & 3 deletions RollbarCommon.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Pod::Spec.new do |s|

s.version = '2.0.0-alpha20'
s.version = '2.0.0-alpha21'
s.name = 'RollbarCommon'
s.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
s.description = <<-DESC
Expand All @@ -27,8 +27,8 @@ Pod::Spec.new do |s|
# Or just: s.author = "Andrey Kornich"
s.social_media_url = "http://twitter.com/rollbar"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{s.version}",
:submodules => true }
:tag => "v#{s.version}"
}
s.resource = 'rollbar-logo.png'
# s.resources = "Resources/*.png"

Expand Down
6 changes: 3 additions & 3 deletions RollbarDeploys.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Pod::Spec.new do |s|


s.version = '2.0.0-alpha20'
s.version = '2.0.0-alpha21'
s.name = 'RollbarDeploys'
s.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
s.description = <<-DESC
Expand All @@ -28,8 +28,8 @@ Pod::Spec.new do |s|
# Or just: s.author = "Andrey Kornich"
s.social_media_url = "http://twitter.com/rollbar"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{s.version}",
:submodules => true }
:tag => "v#{s.version}"
}
s.resource = 'rollbar-logo.png'
# s.resources = "Resources/*.png"

Expand Down
6 changes: 3 additions & 3 deletions RollbarKSCrash.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Pod::Spec.new do |s|


s.version = '2.0.0-alpha20'
s.version = '2.0.0-alpha21'
s.name = 'RollbarKSCrash'
s.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
s.description = <<-DESC
Expand All @@ -28,8 +28,8 @@ Pod::Spec.new do |s|
# Or just: s.author = "Andrey Kornich"
s.social_media_url = "http://twitter.com/rollbar"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{s.version}",
:submodules => true }
:tag => "v#{s.version}"
}
s.resource = 'rollbar-logo.png'
# s.resources = "Resources/*.png"

Expand Down
6 changes: 3 additions & 3 deletions RollbarNotifier.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Pod::Spec.new do |s|


s.version = '2.0.0-alpha20'
s.version = '2.0.0-alpha21'
s.name = 'RollbarNotifier'
s.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
s.description = <<-DESC
Expand All @@ -28,8 +28,8 @@ Pod::Spec.new do |s|
# Or just: s.author = "Andrey Kornich"
s.social_media_url = "http://twitter.com/rollbar"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{s.version}",
:submodules => true }
:tag => "v#{s.version}"
}
s.resource = 'rollbar-logo.png'
# s.resources = "Resources/*.png"

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

#pragma mark - constants

static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha20";
static NSString * const NOTIFIER_VERSION = @"2.0.0-alpha21";

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

Expand Down
6 changes: 3 additions & 3 deletions RollbarSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |sdk|

# Rollbar SDK:
# ============
sdk.version = '2.0.0-alpha20'
sdk.version = '2.0.0-alpha21'
sdk.name = 'RollbarSDK'
sdk.summary = 'Application/client side SDK for accessing the Rollbar API Server.'
sdk.description = <<-DESC
Expand All @@ -29,8 +29,8 @@ Pod::Spec.new do |sdk|
# Or just: sdk.author = "Andrey Kornich"
sdk.social_media_url = "http://twitter.com/rollbar"
sdk.source = { :git => "https://github.com/rollbar/rollbar-ios.git",
:tag => "v#{sdk.version}",
:submodules => true }
:tag => "v#{sdk.version}"
}
sdk.resource = 'rollbar-logo.png'
sdk.ios.deployment_target = '9.0'
sdk.osx.deployment_target = '10.10'
Expand Down

0 comments on commit 86029b4

Please sign in to comment.