Skip to content

Commit 6556fd1

Browse files
committed
Prepare for release 3.2.0
1 parent 4c473e4 commit 6556fd1

Some content is hidden

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

66 files changed

+1027
-91
lines changed

.gitignore

+5-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ DerivedData
2929
*~
3030

3131
# Cocoapods
32-
Example/Podfile.lock
32+
CocoapodsExample/Podfile.lock
3333

34-
Carthage
3534
# We recommend against adding the Pods directory to your .gitignore. However
3635
# you should judge for yourself, the pros and cons are mentioned at:
3736
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
@@ -40,3 +39,7 @@ Carthage
4039
# `pod install` in .travis.yml
4140
#
4241
Pods/
42+
43+
# Carthage
44+
Carthage
45+
Segment_Appboy.framework.zip

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 3.2.0
2+
3+
#### Added
4+
- Added Carthage support
5+
6+
To install the Braze integration through Carthage, add the following lines to your `Cartfile`:
7+
```
8+
github "segmentio/analytics-ios"
9+
github "appboy/appboy-segment-ios"
10+
github "appboy/appboy-ios-sdk"
11+
```
12+
13+
And run:
14+
```sh
15+
carthage update
16+
```
17+
18+
Follow the standard procedure to add the frameworks built/retrieved by Carthage to your project (see [Adding frameworks to an application](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application))
19+
120
## 3.1.0
221

322
#### Added

CarthageExample/Cartfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
github "segmentio/analytics-ios"
2+
github "appboy/appboy-segment-ios"
3+
github "appboy/appboy-ios-sdk"

CarthageExample/Cartfile.resolved

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
github "appboy/appboy-ios-sdk" "3.23.0"
2+
github "appboy/appboy-segment-ios" "3.1.0"
3+
github "segmentio/analytics-ios" "3.8.2"

0 commit comments

Comments
 (0)