Skip to content

Commit 86ee2bf

Browse files
authored
Merge pull request #93 from backtrace-labs/release
Release 1.7.4-beta2
2 parents 0c39eab + 963d2c6 commit 86ee2bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+714
-438
lines changed

.github/workflows/deploy.yml

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,50 @@ on:
55
tags: '[0-9]+.[0-9]+.[0-9]+*'
66

77
jobs:
8-
build-cocoapods:
8+
# test is copied pasted from test.yml - do in a clean way in the future
9+
# BEGIN COPY PASTE FROM TEST.YML
10+
test:
911
runs-on: macos-latest
12+
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
platform: [ios, mac, tvos]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Install dependencies
21+
run: sh scripts/install.sh
22+
- name: Run test
23+
run: fastlane ${{ matrix.platform }} tests
24+
25+
pod-lint:
26+
runs-on: macos-latest
27+
28+
steps:
29+
- uses: actions/checkout@v2
30+
- name: Install dependencies
31+
run: sh scripts/install.sh
32+
- name: Run pod lib lint
33+
run: pod lib lint --verbose --allow-warnings --sources='https://cdn.cocoapods.org/'
34+
# END COPY PASTE FROM TEST.YML
35+
36+
deploy-cocoapods:
37+
runs-on: macos-latest
38+
needs: [pod-lint, test]
39+
1040
steps:
1141
- uses: actions/checkout@v2
1242
- name: Install dependencies
1343
run: sh scripts/install.sh
14-
- name: Run tests
15-
run: sh scripts/test.sh
1644
- name: Deploy to Cocoapods
1745
run: sh scripts/deploy.sh
1846
env:
1947
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
2048

2149
build-dynamic-frameworks:
2250
runs-on: macos-latest
23-
needs: build-cocoapods
51+
needs: [pod-lint, test]
2452

2553
strategy:
2654
matrix:

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
runs-on: macos-latest
1616

1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
platform: [ios, mac, tvos]
2021

Backtrace-iOS/Backtrace.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
#import <UIKit/UIKit.h>
22

3-
//! Project version number for Backtrace.
4-
FOUNDATION_EXPORT double BacktraceVersionNumber;
5-
6-
//! Project version string for Backtrace.
7-
FOUNDATION_EXPORT const unsigned char BacktraceVersionString[];
8-
93
// In this header, you should import all the public headers of your framework using statements like #import <Backtrace/PublicHeader.h>

Backtrace-iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
20+
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
</dict>

Backtrace-iOSTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
20-
<string>1</string>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>
2222
</plist>

Backtrace-macOS/Backtrace.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
#import <Cocoa/Cocoa.h>
22

3-
//! Project version number for Backtrace.
4-
FOUNDATION_EXPORT double BacktraceVersionNumber;
5-
6-
//! Project version string for Backtrace.
7-
FOUNDATION_EXPORT const unsigned char BacktraceVersionString[];
8-
93
// In this header, you should import all the public headers of your framework using statements like #import <Backtrace/PublicHeader.h>
104

Backtrace-macOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

Backtrace-macOSTests/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
20-
<string>1</string>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>
2222
</plist>

Backtrace-tvOS/Backtrace.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
11
#import <UIKit/UIKit.h>
22

3-
//! Project version number for Backtrace.
4-
FOUNDATION_EXPORT double BacktraceVersionNumber;
5-
6-
//! Project version string for Backtrace.
7-
FOUNDATION_EXPORT const unsigned char BacktraceVersionString[];
8-
93
// In this header, you should import all the public headers of your framework using statements like #import <Backtrace/PublicHeader.h>

Backtrace-tvOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
20+
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
2222
<string>$(CURRENT_PROJECT_VERSION)</string>
2323
</dict>

0 commit comments

Comments
 (0)