Skip to content

Commit

Permalink
Update version to 8.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonStalnaker committed Nov 17, 2020
1 parent 92e1c88 commit be7b4f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- master
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '*/1440 * * * *'
- cron: '1 * */1 * *'

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ This repository contains the [Radar](https://www.radar.io) integration for the [
1. Add the kit dependency to your app's Podfile or Cartfile:

```
pod 'mParticle-Radar', '~> 7.0'
pod 'mParticle-Radar', '~> 8.0.2'
```

OR

```
github "mparticle-integrations/mparticle-apple-integration-radar" ~> 7.0
github "mparticle-integrations/mparticle-apple-integration-radar" ~> 8.0.2
```

2. Follow the mParticle iOS SDK [quick-start](https://github.com/mParticle/mparticle-apple-sdk), then rebuild and launch your app, and verify that you see `"Included kits: { Radar }"` in your Xcode console
Expand Down
5 changes: 3 additions & 2 deletions mParticle-Radar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'mParticle-Radar'
s.version = '8.0.1'
s.version = '8.0.2'
s.summary = 'Radar integration for mParticle'
s.description = <<-DESC
This is the Radar integration for mParticle.
Expand All @@ -17,5 +17,6 @@ Pod::Spec.new do |s|
s.ios.dependency 'mParticle-Apple-SDK/mParticle', '~> 8.0'
s.ios.dependency 'RadarSDK', '~> 3.0.0'
s.ios.pod_target_xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited) $(PODS_ROOT)/RadarSDK/**',
'OTHER_LDFLAGS' => '$(inherited) -framework "RadarSDK"' }
'OTHER_LDFLAGS' => '$(inherited) -framework "RadarSDK"',
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end

0 comments on commit be7b4f4

Please sign in to comment.