Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Update release notes and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Linde committed Sep 21, 2015
1 parent aa6b1d4 commit 90cf888
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 13 deletions.
6 changes: 3 additions & 3 deletions HockeySDK-Mac.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'HockeySDK-Mac'
s.version = '3.1.0'
s.version = '3.2.0'

s.summary = 'Collect crash reports with HockeyApp.'
s.description = <<-DESC
Expand All @@ -12,7 +12,7 @@ Pod::Spec.new do |s|
DESC

s.homepage = 'http://www.hockeyapp.net/'
s.documentation_url = 'http://www.hockeyapp.net/help/sdk/mac/3.1.0/'
s.documentation_url = 'http://www.hockeyapp.net/help/sdk/mac/3.2.0/'

s.license = { :type => 'MIT', :file => 'HockeySDK-Mac/LICENSE.txt' }
s.author = { 'Andreas Linde' => '[email protected]', 'Thomas Dohmke' => "[email protected]" }
Expand All @@ -25,6 +25,6 @@ Pod::Spec.new do |s|
s.vendored_frameworks = "HockeySDK-Mac/HockeySDK.framework"
s.public_header_files = "HockeySDK-Mac/HockeySDK.framework/Versions/A/Headers/*.h*"
s.resource = "HockeySDK-Mac/HockeySDK.framework"
s.xcconfig = { 'LD_RUNPATH_SEARCH_PATHS' => '@loader_path/../Frameworks' }
s.xcconfig = { 'LD_RUNPATH_SEARCH_PATHS' => '@executable_path/../Frameworks' }

end
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=develop)](https://travis-ci.org/bitstadium/HockeySDK-Mac)
[![Build Status](https://travis-ci.org/bitstadium/HockeySDK-iOS.svg?branch=master)](https://travis-ci.org/bitstadium/HockeySDK-Mac)

## Version 3.1.0
## Version 3.2.0

- [Changelog](http://www.hockeyapp.net/help/sdk/mac/3.1.0/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/mac/3.2.0/docs/docs/Changelog.html)


## Introduction
Expand Down Expand Up @@ -333,7 +333,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
<a id="documentation"></a>
## 4. Documentation

Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/mac/3.1.0/index.html).
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/mac/3.2.0/index.html).

<a id="troubleshooting"></a>
## 5.Troubleshooting
Expand Down
6 changes: 3 additions & 3 deletions Support/buildnumber.xcconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "HockeySDK.xcconfig"

BUILD_NUMBER = 29
VERSION_STRING = 3.1.0
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"3.1.0\""
BUILD_NUMBER = 30
VERSION_STRING = 3.2.0
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\"3.2.0\""
10 changes: 10 additions & 0 deletions docs/Changelog-template.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## Version 3.2.0

- [NEW] Added module definition
- [UPDATE] Added full support for `NSURLSession`
- [UPDATE] Switched to use `@rpath` instead of `@loader_path` (You might need to adjust your `LD_RUNPATH_SEARCH_PATHS` setting to include `@executable_path/../Frameworks`!)
- [UPDATE] Updated PLCrashReporter build
- [BUGFIX] Added missing public header files
- [BUGFIX] Doesn't install the C++ exception when running on 10.7.x
- [BUGFIX] Various other improvements and fixes

## Version 3.1.0

- [NEW] `BITCrashManager`: Added support for unhandled C++ exceptions
Expand Down
6 changes: 3 additions & 3 deletions docs/Guide-Installation-Setup-template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Version 3.1.0
## Version 3.2.0

- [Changelog](http://www.hockeyapp.net/help/sdk/mac/3.1.0/docs/docs/Changelog.html)
- [Changelog](http://www.hockeyapp.net/help/sdk/mac/3.2.0/docs/docs/Changelog.html)


## Introduction
Expand Down Expand Up @@ -321,7 +321,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
<a id="documentation"></a>
## 4. Documentation

Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/mac/3.1.0/index.html).
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/mac/3.2.0/index.html).

<a id="troubleshooting"></a>
## 5.Troubleshooting
Expand Down

0 comments on commit 90cf888

Please sign in to comment.