Skip to content

Commit 2567b0a

Browse files
authored
prepare for release 3.7.0 (#391)
1 parent 4466da0 commit 2567b0a

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
os: osx
107107
osx_image: xcode11.3
108108
env:
109-
- VERSION=3.6.1
109+
- VERSION=3.7.0
110110
install:
111111
# install hub
112112
- 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:
123123
os: osx
124124
osx_image: xcode11.3
125125
env:
126-
- VERSION=3.6.1
126+
- VERSION=3.7.0
127127
install:
128128
# install hub
129129
- 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

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Optimizely Swift SDK Changelog
22

3+
## 3.7.0
4+
February 23, 2021
5+
6+
### New Features
7+
* Introducing a new primary interface for retrieving feature flag status, configuration and associated experiment decisions for users ([#373](https://github.com/optimizely/swift-sdk/pull/373), [#386](https://github.com/optimizely/swift-sdk/pull/386)). The new `OptimizelyUserContext` class is instantiated with `createUserContext` and exposes the following APIs to get `OptimizelyDecision`:
8+
9+
- setAttribute
10+
- decide
11+
- decideAll
12+
- decideForKeys
13+
- trackEvent
14+
15+
* For details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/v4.0/docs/swift-sdk](https://docs.developers.optimizely.com/full-stack/v4.0/docs/swift-sdk).
16+
17+
### Bug Fixes
18+
* Fix a synchronization bug with logger injection (the binder is being updated every inject), which caused rare app crashes. ([#387](https://github.com/optimizely/swift-sdk/pull/387))
19+
20+
321
## 3.6.1
422
November 19, 2020
523

Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ SPEC CHECKSUMS:
1717

1818
PODFILE CHECKSUM: 0195918f4c7b47425ae284153b642617e2ef6781
1919

20-
COCOAPODS: 1.9.2
20+
COCOAPODS: 1.9.3

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ Please note below that _\<platform\>_ is used to represent the platform on which
3434
```
3535
dependencies: [
3636
.package(url: "https://github.com/optimizely/swift-sdk.git",
37-
.upToNextMinor(from: “3.6.1”))
37+
.upToNextMinor(from: “3.7.0”))
3838
]
3939
```
4040

4141
#### CocoaPods
4242
1. Add the following lines to the _Podfile_:<pre>
4343
```use_frameworks!```
44-
```pod 'OptimizelySwiftSDK', '~> 3.6.1'```
44+
```pod 'OptimizelySwiftSDK', '~> 3.7.0'```
4545
</pre>
4646

4747
2. Run the following command: <pre>``` pod install ```</pre>
4848

4949
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
5050

5151
#### Carthage
52-
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.6.1```</pre>
52+
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.7.0```</pre>
5353

5454
2. Run the following command:<pre>```carthage update```</pre>
5555

0 commit comments

Comments
 (0)