File tree Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Expand file tree Collapse file tree 3 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ jobs:
106
106
os : osx
107
107
osx_image : xcode11.6
108
108
env :
109
- - VERSION=3.7.0
109
+ - VERSION=3.7.1
110
110
install :
111
111
# install hub
112
112
- 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
@@ -123,7 +123,7 @@ jobs:
123
123
os : osx
124
124
osx_image : xcode11.6
125
125
env :
126
- - VERSION=3.7.0
126
+ - VERSION=3.7.1
127
127
install :
128
128
# install hub
129
129
- 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.7.1
4
+ April 14, 2021
5
+
6
+ ### New Features
7
+ * DatafileHandler can be customized and set when OptimizelyClient is instantiated. ([ #384 ] ( https://github.com/optimizely/swift-sdk/pull/384 ) )
8
+ * Add watchOS Compatibility. ([ #390 ] ( https://github.com/optimizely/swift-sdk/pull/390 ) )
9
+
10
+ ### Bug Fixes
11
+ * Clean up build and lint warnings. ([ #397 ] ( https://github.com/optimizely/swift-sdk/pull/397 ) )
12
+
13
+
3
14
## 3.7.0
4
15
February 23, 2021
5
16
Original file line number Diff line number Diff line change @@ -34,22 +34,22 @@ Please note below that _\<platform\>_ is used to represent the platform on which
34
34
```
35
35
dependencies: [
36
36
.package(url: "https://github.com/optimizely/swift-sdk.git",
37
- .upToNextMinor(from: “3.7.0 ”))
37
+ .upToNextMinor(from: “3.7.1 ”))
38
38
]
39
39
```
40
40
41
41
#### CocoaPods
42
42
1 . Add the following lines to the _ Podfile_ :<pre >
43
43
``` use_frameworks! ```
44
- ``` pod 'OptimizelySwiftSDK', '~> 3.7.0 ' ```
44
+ ``` pod 'OptimizelySwiftSDK', '~> 3.7.1 ' ```
45
45
</pre >
46
46
47
47
2 . Run the following command: <pre >``` pod install ``` </pre >
48
48
49
49
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
50
50
51
51
#### Carthage
52
- 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.7.0 ``` </pre >
52
+ 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.7.1 ``` </pre >
53
53
54
54
2 . Run the following command:<pre >``` carthage update ``` </pre >
55
55
You can’t perform that action at this time.
0 commit comments