File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
DemoSwiftApp/DemoSwiftApp.xcodeproj/xcshareddata/xcschemes Expand file tree Collapse file tree 4 files changed +12
-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.8.0
109
+ - VERSION=3.8.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.8.0
126
+ - VERSION=3.8.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.8.1
4
+ August 6, 2021
5
+
6
+ ### Bug Fixes
7
+ * Remove lazy initializations for thread safety. ([ #422 ] ( https://github.com/optimizely/swift-sdk/pull/422 ) )
8
+
9
+
3
10
## 3.8.0
4
11
June 2, 2021
5
12
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1250 "
3
+ LastUpgradeVersion = " 1240 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
Original file line number Diff line number Diff line change @@ -38,15 +38,15 @@ Add the dependency on the Optimizely Swift SDK with Swift Package Manager in `Xc
38
38
#### CocoaPods
39
39
1 . Add the following lines to the _ Podfile_ :<pre >
40
40
``` use_frameworks! ```
41
- ``` pod 'OptimizelySwiftSDK', '~> 3.8.0 ' ```
41
+ ``` pod 'OptimizelySwiftSDK', '~> 3.8.1 ' ```
42
42
</pre >
43
43
44
44
2 . Run the following command: <pre >``` pod install ``` </pre >
45
45
46
46
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
47
47
48
48
#### Carthage
49
- 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.8.0 ``` </pre >
49
+ 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.8.1 ``` </pre >
50
50
51
51
2 . Run the following command:<pre >``` carthage update ``` </pre >
52
52
You can’t perform that action at this time.
0 commit comments