Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit b1518cb

Browse files
author
Andreas Linde
committed
Merge branch 'release/3.8.1'
2 parents f7eeecb + 359f67a commit b1518cb

File tree

8 files changed

+23
-19
lines changed

8 files changed

+23
-19
lines changed

HockeySDK-Source.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'HockeySDK-Source'
3-
s.version = '3.8'
3+
s.version = '3.8.1'
44

55
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
66
s.description = <<-DESC
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
DESC
1313

1414
s.homepage = 'http://hockeyapp.net/'
15-
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8/'
15+
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8.1/'
1616

1717
s.license = 'MIT'
1818
s.author = { 'Andreas Linde' => '[email protected]', 'Thomas Dohmke' => "[email protected]" }
@@ -26,7 +26,7 @@ Pod::Spec.new do |s|
2626
s.frameworks = 'AssetsLibrary', 'CoreText', 'CoreGraphics', 'MobileCoreServices', 'QuartzCore', 'QuickLook', 'Security', 'SystemConfiguration', 'UIKit'
2727
s.libraries = 'c++'
2828
s.ios.vendored_frameworks = 'Vendor/CrashReporter.framework'
29-
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"52\\"" BITHOCKEY_C_BUILD="\\"52\\""} }
29+
s.xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"53\\"" BITHOCKEY_C_BUILD="\\"53\\""} }
3030
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
3131
s.preserve_paths = 'Resources', 'Support'
3232
s.private_header_files = 'Classes/*Private.h'

HockeySDK.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'HockeySDK'
3-
s.version = '3.8'
3+
s.version = '3.8.1'
44

55
s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.'
66
s.description = <<-DESC
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
1212
DESC
1313

1414
s.homepage = 'http://hockeyapp.net/'
15-
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8/'
15+
s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8.1/'
1616

1717
s.license = { :type => 'MIT', :file => 'HockeySDK-iOS/LICENSE' }
1818
s.author = { 'Andreas Linde' => '[email protected]', 'Thomas Dohmke' => "[email protected]" }

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=master)](https://travis-ci.org/bitstadium/HockeySDK-iOS)
22

3-
## Version 3.8
3+
## Version 3.8.1
44

5-
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8/docs/docs/Changelog.html)
5+
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8.1/docs/docs/Changelog.html)
66

77
## Introduction
88

@@ -455,7 +455,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
455455
<a id="documentation"></a>
456456
## 4. Documentation
457457

458-
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8/index.html).
458+
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8.1/index.html).
459459

460460
<a id="troubleshooting"></a>
461461
## 5.Troubleshooting
@@ -469,7 +469,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
469469
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
470470

471471
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
472-
- `de.bitstadium.HockeySDK-iOS-3.8.docset`
472+
- `de.bitstadium.HockeySDK-iOS-3.8.1.docset`
473473

474474
3. Feature are not working as expected
475475

Support/buildnumber.xcconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "HockeySDK.xcconfig"
22

3-
BUILD_NUMBER = 52
4-
VERSION_STRING = 3.8
3+
BUILD_NUMBER = 53
4+
VERSION_STRING = 3.8.1
55
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) HOCKEYSDK_CONFIGURATION_$(CONFIGURATION) BITHOCKEY_VERSION="@\""$(VERSION_STRING)"\"" BITHOCKEY_BUILD="@\""$(BUILD_NUMBER)"\"" BITHOCKEY_C_VERSION="\""$(VERSION_STRING)"\"" BITHOCKEY_C_BUILD="\""$(BUILD_NUMBER)"\""
66
BIT_ARM_ARCHS = armv7 armv7s arm64
77
BIT_SIM_ARCHS = x86_64 i386
Binary file not shown.

Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@
2323
<key>DTCompiler</key>
2424
<string>com.apple.compilers.llvm.clang.1_0</string>
2525
<key>DTPlatformBuild</key>
26-
<string>6E35b</string>
26+
<string>7A220</string>
2727
<key>DTPlatformVersion</key>
2828
<string>GM</string>
2929
<key>DTSDKBuild</key>
30-
<string>14D125</string>
30+
<string>15A278</string>
3131
<key>DTSDKName</key>
3232
<string>macosx10.10</string>
3333
<key>DTXcode</key>
34-
<string>0640</string>
34+
<string>0700</string>
3535
<key>DTXcodeBuild</key>
36-
<string>6E35b</string>
36+
<string>7A220</string>
3737
</dict>
3838
</plist>

docs/Changelog-template.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 3.8.1
2+
3+
- [UPDATE] Updated PLCrashReporter build using Xcode 7 (7A220)
4+
15
## Version 3.8
26

37
- [NEW] Added Bitcode support

docs/Guide-Installation-Setup-template.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## Version 3.8
1+
## Version 3.8.1
22

3-
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8/docs/docs/Changelog.html)
3+
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8.1/docs/docs/Changelog.html)
44

55
## Introduction
66

@@ -439,7 +439,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
439439
<a id="documentation"></a>
440440
## 4. Documentation
441441

442-
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8/index.html).
442+
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8.1/index.html).
443443

444444
<a id="troubleshooting"></a>
445445
## 5.Troubleshooting
@@ -453,7 +453,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
453453
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
454454

455455
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
456-
- `de.bitstadium.HockeySDK-iOS-3.8.docset`
456+
- `de.bitstadium.HockeySDK-iOS-3.8.1.docset`
457457

458458
3. Feature are not working as expected
459459

0 commit comments

Comments
 (0)