File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ jobs:
102
102
os : osx
103
103
osx_image : xcode11.3
104
104
env :
105
- - VERSION=3.2.0
105
+ - VERSION=3.2.1
106
106
install :
107
107
# install hub
108
108
- wget https://github.com/github/hub/releases/download/v2.11.2/hub-darwin-amd64-2.11.2.tgz -O /tmp/hub-darwin-amd64-2.11.2.tgz && tar -xvf /tmp/hub-darwin-amd64-2.11.2.tgz -C /usr/local/opt && ln -s /usr/local/opt/hub-darwin-amd64-2.11.2/bin/hub /usr/local/bin/hub
@@ -119,7 +119,7 @@ jobs:
119
119
os : osx
120
120
osx_image : xcode11.3
121
121
env :
122
- - VERSION=3.2.0
122
+ - VERSION=3.2.1
123
123
install :
124
124
# install hub
125
125
- wget https://github.com/github/hub/releases/download/v2.11.2/hub-darwin-amd64-2.11.2.tgz -O /tmp/hub-darwin-amd64-2.11.2.tgz && tar -xvf /tmp/hub-darwin-amd64-2.11.2.tgz -C /usr/local/opt && ln -s /usr/local/opt/hub-darwin-amd64-2.11.2/bin/hub /usr/local/bin/hub
Original file line number Diff line number Diff line change 1
1
# Optimizely Swift SDK Changelog
2
2
3
+ ## 3.2.1
4
+ January 16, 2020
5
+
6
+ ### Bug Fixes
7
+ - Swift Package Manager (SPM) spec changed to iOS10+/tvOS10+
8
+
9
+
3
10
## 3.2.0
4
11
January 15, 2020
5
12
Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ Please note below that _\<platform\>_ is used to represent the platform on which
31
31
#### CocoaPods
32
32
1 . Add the following lines to the _ Podfile_ :<pre >
33
33
```use_frameworks!```
34
- ```pod 'OptimizelySwiftSDK', '~> 3.2.0 '```
34
+ ```pod 'OptimizelySwiftSDK', '~> 3.2.1 '```
35
35
</pre>
36
36
37
37
2 . Run the following command: <pre >``` pod install ``` </pre >
38
38
39
39
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
40
40
41
41
#### Carthage
42
- 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.2.0 ``` </pre >
42
+ 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.2.1 ``` </pre >
43
43
44
44
2 . Run the following command:<pre >``` carthage update ``` </pre >
45
45
@@ -61,7 +61,7 @@ Futher installation instructions for Carthage: https://github.com/Carthage/Carth
61
61
62
62
```
63
63
dependencies: [
64
- .package(url: "https://github.com/optimizely/swift-sdk.git", .upToNextMinor(from: “3.2.0 ”))
64
+ .package(url: "https://github.com/optimizely/swift-sdk.git", .upToNextMinor(from: “3.2.1 ”))
65
65
]
66
66
```
67
67
You can’t perform that action at this time.
0 commit comments