Skip to content

Commit

Permalink
Merge 3785569 into ea35379
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeopt committed Jan 6, 2022
2 parents ea35379 + 3785569 commit a6619f4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
os: osx
osx_image: xcode12.4
env:
- VERSION=3.9.0
- VERSION=3.10.0
install:
# install hub
- 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
Expand All @@ -126,7 +126,7 @@ jobs:
os: osx
osx_image: xcode12.4
env:
- VERSION=3.9.0
- VERSION=3.10.0
install:
# install hub
- 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
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Optimizely Swift SDK Changelog

## 3.10.0
January 6, 2022

### New Features
* Add a set of new APIs for forced-decisions to OptimizelyUserContext ([#431](https://github.com/optimizely/swift-sdk/pull/431), [#442](https://github.com/optimizely/swift-sdk/pull/442), [#443](https://github.com/optimizely/swift-sdk/pull/443)):
- setForcedDecision
- getForcedDecision
- removeForcedDecision
- removeAllForcedDecisions

For details, refer to our [documentation](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-swift).

* Add reachability checking for datafile fetch and event dispatching ([#439](https://github.com/optimizely/swift-sdk/pull/439)).

## 3.9.0
September 15, 2021

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Add the dependency on the Optimizely Swift SDK with Swift Package Manager in `Xc
#### CocoaPods
1. Add the following lines to the _Podfile_:<pre>
```use_frameworks!```
```pod 'OptimizelySwiftSDK', '~> 3.9.0'```
```pod 'OptimizelySwiftSDK', '~> 3.10.0'```
</pre>

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

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

#### Carthage
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.9.0```</pre>
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 3.10.0```</pre>

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

Expand Down

0 comments on commit a6619f4

Please sign in to comment.