From 5b649b33418eccfde79a4e9af12ea810bb054339 Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Thu, 27 Aug 2015 13:22:37 +0200 Subject: [PATCH] 3.8 Beta 1 Release --- HockeySDK-Source.podspec | 4 ++-- HockeySDK.podspec | 4 ++-- README.md | 18 +++++++++--------- Support/buildnumber.xcconfig | 4 ++-- docs/Changelog-template.md | 11 +++++++++++ docs/Guide-Installation-Setup-template.md | 14 +++++++------- 6 files changed, 33 insertions(+), 22 deletions(-) diff --git a/HockeySDK-Source.podspec b/HockeySDK-Source.podspec index e7826308..6c75f66b 100644 --- a/HockeySDK-Source.podspec +++ b/HockeySDK-Source.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'HockeySDK-Source' - s.version = '3.7.2' + s.version = '3.8-Beta.1' s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.' s.description = <<-DESC @@ -12,7 +12,7 @@ Pod::Spec.new do |s| DESC s.homepage = 'http://hockeyapp.net/' - s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.7.2/' + s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8-Beta.1/' s.license = 'MIT' s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" } diff --git a/HockeySDK.podspec b/HockeySDK.podspec index aaf90443..70c9a66e 100644 --- a/HockeySDK.podspec +++ b/HockeySDK.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'HockeySDK' - s.version = '3.7.2' + s.version = '3.8-Beta.1' s.summary = 'Collect live crash reports, get feedback from your users, distribute your betas, and analyze your test coverage with HockeyApp.' s.description = <<-DESC @@ -12,7 +12,7 @@ Pod::Spec.new do |s| DESC s.homepage = 'http://hockeyapp.net/' - s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.7.2/' + s.documentation_url = 'http://hockeyapp.net/help/sdk/ios/3.8-Beta.1/' s.license = { :type => 'MIT', :file => 'HockeySDK-iOS/LICENSE' } s.author = { 'Andreas Linde' => 'mail@andreaslinde.de', 'Thomas Dohmke' => "thomas@dohmke.de" } diff --git a/README.md b/README.md index c19ce991..b4fde510 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ [![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=develop)](https://travis-ci.org/bitstadium/HockeySDK-iOS) -## Version 3.7.2 +## Version 3.8-Beta.1 -- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.7.2/docs/docs/Changelog.html) +- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8-Beta.1/docs/docs/Changelog.html) ## Introduction @@ -10,8 +10,8 @@ HockeySDK-iOS implements support for using HockeyApp in your iOS applications. The following features are currently supported: -1. **Collect crash reports:** If your app crashes, a crash log with the same format as from the Apple Crash Reporter is written to the device's storage. If the user starts the app again, he is asked to submit the crash report to HockeyApp. This works for both beta and live apps, i.e. those submitted to the App Store! -I +1. **Collect crash reports:** If your app crashes, a crash log with the same format as from the Apple Crash Reporter is written to the device's storage. If the user starts the app again, he is asked to submit the crash report to HockeyApp. This works for both beta and letive apps, i.e. those submitted to the App Store! + 2. **Update Ad-Hoc / Enterprise apps:** The app will check with HockeyApp if a new version for your Ad-Hoc or Enterprise build is available. If yes, it will show an alert view to the user and let him see the release notes, the version history and start the installation process right away. 3. **Update notification for app store:** The app will check if a new version for your app store release is available. If yes, it will show an alert view to the user and let him open your app in the App Store app. (Disabled by default!) @@ -27,7 +27,7 @@ This document contains the following sections: 3. [Advanced Setup](#advancedsetup) 1. [Linking System Frameworks manually](#linkmanually) 2. [Setup with CocoaPods](#cocoapods) - 3. [iOS 8 Extensions](#extensions) + 3. [iOS Extensions](#extensions) 4. [WatchKit 1 Extensions](#watchkit) 5. [Crash Reporting](#crashreporting) 6. [Feedback](#feedback) @@ -43,7 +43,7 @@ This document contains the following sections: ## 1. Requirements -1. We assume that you already have a project in Xcode and that this project is opened in Xcode 6 or later. +1. We assume that you already have a project in Xcode and that this project is opened in Xcode 7 or later. 2. The SDK supports iOS 6.0 and later. @@ -204,9 +204,9 @@ pod "HockeySDK-Source" -### 3.3 iOS 8 Extensions +### 3.3 iOS Extensions -The following points need to be considered to use the HockeySDK SDK with iOS 8 Extensions: +The following points need to be considered to use the HockeySDK SDK with iOS Extensions: 1. Each extension is required to use the same values for version (`CFBundleShortVersionString`) and build number (`CFBundleVersion`) as the main app uses. (This is required only if you are using the same `APP_IDENTIFIER` for your app and extensions). 2. You need to make sure the SDK setup code is only invoked **once**. Since there is no `applicationDidFinishLaunching:` equivalent and `viewDidLoad` can run multiple times, you need to use a setup like the following example: @@ -455,7 +455,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK ## 4. Documentation -Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.7.2/index.html). +Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8-Beta.1/index.html). ## 5.Troubleshooting diff --git a/Support/buildnumber.xcconfig b/Support/buildnumber.xcconfig index 9988bee8..cbb202b6 100644 --- a/Support/buildnumber.xcconfig +++ b/Support/buildnumber.xcconfig @@ -1,7 +1,7 @@ #include "HockeySDK.xcconfig" -BUILD_NUMBER = 45 -VERSION_STRING = 3.7.2 +BUILD_NUMBER = 50 +VERSION_STRING = 3.8-Beta.1 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)"\"" BIT_ARM_ARCHS = armv7 armv7s arm64 BIT_SIM_ARCHS = x86_64 i386 diff --git a/docs/Changelog-template.md b/docs/Changelog-template.md index 305f73dd..2bce1da9 100644 --- a/docs/Changelog-template.md +++ b/docs/Changelog-template.md @@ -1,3 +1,14 @@ +## Version 3.8-Beta.1 + +- [NEW] Added Bitcode support +- [UPDATE] Requires Xcode 7 or later to build +- [UPDATE] Requires iOS 7 or later as base SDK +- [UPDATE] Silenced deprecation warnings for `NSURLConnection` calls, these will be refactored in a future update +- [UPDATE] Removed statusbar adjustment code (which isn't needed any longer) +- [UPDATE] Removed kBITTextLabel... defines and use NSText.. instead +- [UPDATE] Removed a few `#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1` since iOS 7 or later is now required as base SDK +- [UPDATE] Use `UIAlertController` when available + ## Version 3.7.2 - [BUGFIX] `BITCrashManager`: Added workaround for a bug observed in iOS 9 beta's dyld triggering an infinite loop on startup diff --git a/docs/Guide-Installation-Setup-template.md b/docs/Guide-Installation-Setup-template.md index 617f57db..7a36507f 100644 --- a/docs/Guide-Installation-Setup-template.md +++ b/docs/Guide-Installation-Setup-template.md @@ -1,6 +1,6 @@ -## Version 3.7.2 +## Version 3.8-Beta.1 -- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.7.2/docs/docs/Changelog.html) +- [Changelog](http://www.hockeyapp.net/help/sdk/ios/3.8-Beta.1/docs/docs/Changelog.html) ## Introduction @@ -11,7 +11,7 @@ This document contains the following sections: 3. [Advanced Setup](#advancedsetup) 1. [Linking System Frameworks manually](#linkmanually) 2. [Setup with CocoaPods](#cocoapods) - 3. [iOS 8 Extensions](#extensions) + 3. [iOS Extensions](#extensions) 4. [WatchKit 1 Extensions](#watchkit) 5. [Crash Reporting](#crashreporting) 6. [Feedback](#feedback) @@ -27,7 +27,7 @@ This document contains the following sections: ## 1. Requirements -1. We assume that you already have a project in Xcode and that this project is opened in Xcode 6 or later. +1. We assume that you already have a project in Xcode and that this project is opened in Xcode 7 or later. 2. The SDK supports iOS 6.0 and later. @@ -188,9 +188,9 @@ pod "HockeySDK-Source" -### 3.3 iOS 8 Extensions +### 3.3 iOExtensions -The following points need to be considered to use the HockeySDK SDK with iOS 8 Extensions: +The following points need to be considered to use the HockeySDK SDK with iOS Extensions: 1. Each extension is required to use the same values for version (`CFBundleShortVersionString`) and build number (`CFBundleVersion`) as the main app uses. (This is required only if you are using the same `APP_IDENTIFIER` for your app and extensions). 2. You need to make sure the SDK setup code is only invoked **once**. Since there is no `applicationDidFinishLaunching:` equivalent and `viewDidLoad` can run multiple times, you need to use a setup like the following example: @@ -439,7 +439,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK ## 4. Documentation -Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.7.2/index.html). +Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.8-Beta.1/index.html). ## 5.Troubleshooting