From 378556990be3b478875e7dfa432482b53b8b262c Mon Sep 17 00:00:00 2001 From: Jae Kim Date: Wed, 5 Jan 2022 16:31:24 -0800 Subject: [PATCH] prepare for release 3.10.0 --- .travis.yml | 4 ++-- CHANGELOG.md | 14 ++++++++++++++ README.md | 4 ++-- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d841d44f..97a1b242 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 53e04a4a..c5c90664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 987a7759..5cd9af66 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add the dependency on the Optimizely Swift SDK with Swift Package Manager in `Xc #### CocoaPods 1. Add the following lines to the _Podfile_:
 ```use_frameworks!```
-```pod 'OptimizelySwiftSDK', '~> 3.9.0'```
+```pod 'OptimizelySwiftSDK', '~> 3.10.0'```
 
2. Run the following command:
``` pod install ```
@@ -46,7 +46,7 @@ Add the dependency on the Optimizely Swift SDK with Swift Package Manager in `Xc Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html #### Carthage -1. Add the following lines to the _Cartfile_:
```github "optimizely/swift-sdk" ~> 3.9.0```
+1. Add the following lines to the _Cartfile_:
```github "optimizely/swift-sdk" ~> 3.10.0```
2. Run the following command:
```carthage update```