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

Commit d70a42a

Browse files
author
Benjamin Scholtysik (Reimold)
authored
Merge pull request #455 from bitstadium/release/5.0.0-beta.2
Add changelog and bump version to 5.0.0-beta.2
2 parents c01fbdd + 1956cdd commit d70a42a

File tree

8 files changed

+27
-17
lines changed

8 files changed

+27
-17
lines changed

Documentation/Guides/Changelog.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 5.0.0-beta.2
2+
3+
- [FEATURE] Added support for Metrics in app extensions. [#449](https://github.com/bitstadium/HockeySDK-iOS/pull/449)
4+
- [FEATURE] User Metrics can now be enabled after it was disabled [#451)(https://github.com/bitstadium/HockeySDK-iOS/pull/451)
5+
- [IMPROVEMENT] Don't use `UIAlertView` but `UIAlertController`.[#446](https://github.com/bitstadium/HockeySDK-iOS/pull/446)
6+
- [IMPROVEMENT] `BITAttributedLabel` is now based on `TTTAttributedLabel` 2.0. [#450](https://github.com/bitstadium/HockeySDK-iOS/pull/450)
7+
- [BUGFIX] Fix a bug in `BITAuthenticator`. [#447](https://github.com/bitstadium/HockeySDK-iOS/pull/447)
8+
- [BUGFIX] Fix for a bug in `BITImageAnnotation`. [#453](https://github.com/bitstadium/HockeySDK-iOS/pull/453)
9+
110
## 5.0.0-beta.1
211

312
This version drops support for iOS 7. There is not other breaking change at this point.

Documentation/Guides/Installation & Setup.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
[![Version](http://cocoapod-badges.herokuapp.com/v/HockeySDK/badge.png)](http://cocoadocs.org/docsets/HockeySDK)
44
[![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net)
55

6-
## Version 5.0.0-beta.1
6+
## Version 5.0.0-beta.2
77

8-
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1/docs/docs/Changelog.html)
8+
- [Changelog](http://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/docs/docs/Changelog.html)
99

1010
**NOTE** If your are using the binary integration of our SDK, make sure that the `HockeySDKResources.bundle` inside the `HockeySDK.embeddedframework`-folder has been added to your application.
1111

@@ -63,8 +63,8 @@ This document contains the following sections:
6363
<a id="requirements"></a>
6464
## 1. Requirements
6565

66-
1. We assume that you already have a project in Xcode and that this project is opened in Xcode 7 or later.
67-
2. The SDK supports iOS 7.0 and later.
66+
1. We assume that you already have a project in Xcode and that this project is opened in Xcode 8 or later.
67+
2. The SDK supports iOS 8.0 and later.
6868

6969
<a id="setup"></a>
7070
## 2. Setup
@@ -821,7 +821,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
821821
<a id="documentation"></a>
822822
## 4. Documentation
823823
824-
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/5.0.0-beta.1/index.html).
824+
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/5.0.0-beta.2/index.html).
825825
826826
<a id="troubleshooting"></a>
827827
## 5.Troubleshooting
@@ -835,7 +835,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
835835
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:
836836
837837
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
838-
- `de.bitstadium.HockeySDK-iOS-5.0.0-beta.1.docset`
838+
- `de.bitstadium.HockeySDK-iOS-5.0.0-beta.2.docset`
839839
840840
### Features are not working as expected
841841

Documentation/HockeySDK/.jazzy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sdk: iphonesimulator
55
theme: ../Themes/apple
66

77
module: HockeySDK
8-
module_version: 5.0.0-beta.1
8+
module_version: 5.0.0-beta.2
99
author: Microsoft Corp
1010
author_url: https://www.microsoft.com
1111

HockeySDK-Source.podspec

+2-2
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 = '5.0.0-beta.1'
3+
s.version = '5.0.0-beta.2'
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
@@ -25,7 +25,7 @@ Pod::Spec.new do |s|
2525
s.frameworks = 'AssetsLibrary', 'CoreGraphics', 'CoreTelephony', 'CoreText', 'MobileCoreServices', 'Photos', 'QuartzCore', 'QuickLook', 'Security', 'SystemConfiguration', 'UIKit'
2626
s.libraries = 'c++', 'z'
2727
s.vendored_frameworks = 'Vendor/CrashReporter.framework'
28-
s.pod_target_xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"102\\"" BITHOCKEY_C_BUILD="\\"102\\""} }
28+
s.pod_target_xcconfig = {'GCC_PREPROCESSOR_DEFINITIONS' => %{$(inherited) BITHOCKEY_VERSION="@\\"#{s.version}\\"" BITHOCKEY_C_VERSION="\\"#{s.version}\\"" BITHOCKEY_BUILD="@\\"103\\"" BITHOCKEY_C_BUILD="\\"103\\""} }
2929
s.resource_bundle = { 'HockeySDKResources' => ['Resources/*.png', 'Resources/*.lproj'] }
3030
s.preserve_paths = 'Resources', 'Support'
3131
s.private_header_files = 'Classes/*Private.h'

HockeySDK.podspec

+1-1
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 = '5.0.0-beta.1'
3+
s.version = '5.0.0-beta.2'
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

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Version](http://cocoapod-badges.herokuapp.com/v/HockeySDK/badge.png)](http://cocoadocs.org/docsets/HockeySDK)
44
[![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net)
55

6-
## Version 5.0.0-beta.1
6+
## Version 5.0.0-beta.2
77

88
HockeySDK-iOS implements support for using HockeyApp in your iOS applications.
99

@@ -23,13 +23,13 @@ The following features are currently supported:
2323

2424
## 1. Setup
2525

26-
It is super easy to use HockeyApp in your iOS app. Have a look at our [documentation](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1/index.html) and onboard your app within minutes.
26+
It is super easy to use HockeyApp in your iOS app. Have a look at our [documentation](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/index.html) and onboard your app within minutes.
2727

2828
## 2. Documentation
2929

30-
Please visit [our landing page](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1/index.html) as a starting point for all of our documentation.
30+
Please visit [our landing page](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/index.html) as a starting point for all of our documentation.
3131

32-
Please check out our [changelog](http://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1/changelog.html), as well as our [troubleshooting section](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1//installation--setup.html#troubleshooting).
32+
Please check out our [changelog](http://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/changelog.html), as well as our [troubleshooting section](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/installation--setup.html#troubleshooting).
3333

3434
## 3. Contributing
3535

@@ -53,4 +53,4 @@ You must sign a [Contributor License Agreement](https://cla.microsoft.com/) befo
5353

5454
## 4. Contact
5555

56-
If you have further questions or are running into trouble that cannot be resolved by any of the steps [in our troubleshooting section](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.1/installation--setup.html#troubleshooting), feel free to open an issue here, contact us at [[email protected]](mailto:[email protected]) or join our [Slack](https://slack.hockeyapp.net).
56+
If you have further questions or are running into trouble that cannot be resolved by any of the steps [in our troubleshooting section](https://www.hockeyapp.net/help/sdk/ios/5.0.0-beta.2/installation--setup.html#troubleshooting), feel free to open an issue here, contact us at [[email protected]](mailto:[email protected]) or join our [Slack](https://slack.hockeyapp.net).

Support/HockeySDK.xcodeproj/project.pbxproj

+1
Original file line numberDiff line numberDiff line change
@@ -2094,6 +2094,7 @@
20942094
GCC_WARN_UNUSED_FUNCTION = YES;
20952095
GCC_WARN_UNUSED_VARIABLE = YES;
20962096
INFOPLIST_FILE = "../Resources/HockeySDK-Info.plist";
2097+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
20972098
RUN_CLANG_STATIC_ANALYZER = YES;
20982099
SDKROOT = iphoneos;
20992100
VALIDATE_PRODUCT = NO;

Support/HockeySDKBase.xcconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
BUILD_NUMBER = 102
2-
VERSION_STRING = 5.0.0-beta.1
1+
BUILD_NUMBER = 103
2+
VERSION_STRING = 5.0.0-beta.2
33
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) $(HOCKEYSDK_GCC_PREPROCESSOR_DEFINITIONS) HOCKEYSDK_CONFIGURATION_$(CONFIGURATION) BITHOCKEY_VERSION="@\""$(VERSION_STRING)"\"" BITHOCKEY_BUILD="@\""$(BUILD_NUMBER)"\"" BITHOCKEY_C_VERSION="\""$(VERSION_STRING)"\"" BITHOCKEY_C_BUILD="\""$(BUILD_NUMBER)"\""
44
BIT_ARM_ARCHS = armv7 armv7s arm64
55
BIT_SIM_ARCHS = x86_64 i386

0 commit comments

Comments
 (0)