File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109
109
os : osx
110
110
osx_image : xcode12.4
111
111
env :
112
- - VERSION=3.10.0
112
+ - VERSION=3.10.1
113
113
install :
114
114
# install hub
115
115
- 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
@@ -126,7 +126,7 @@ jobs:
126
126
os : osx
127
127
osx_image : xcode12.4
128
128
env :
129
- - VERSION=3.10.0
129
+ - VERSION=3.10.1
130
130
install :
131
131
# install hub
132
132
- 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.10.1
4
+ April 8, 2022
5
+
6
+ ### Bug Fixes
7
+ * Remove sources of race conditions in ProjectConfig ([ #449 ] ( https://github.com/optimizely/swift-sdk/pull/449 ) ).
8
+ * Clean up URLSession after tasks are completed ([ #446 ] ( https://github.com/optimizely/swift-sdk/pull/446 ) ).
9
+
3
10
## 3.10.0
4
11
January 6, 2022
5
12
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.10.0 ' ```
41
+ ``` pod 'OptimizelySwiftSDK', '~> 3.10.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.10.0 ``` </pre >
49
+ 1 . Add the following lines to the _ Cartfile_ :<pre >``` github "optimizely/swift-sdk" ~> 3.10.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