From 32c8eca2a6ae2795ac4c625a3d2e8d05482ec4e8 Mon Sep 17 00:00:00 2001 From: Muzahidul Islam <129880873+muzahidul-opti@users.noreply.github.com> Date: Thu, 30 Nov 2023 22:01:37 +0600 Subject: [PATCH 1/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19c86231..13585910 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ If you have a name conflict with other swift packages when you add the Optimizel #### CocoaPods 1. Add the following lines to the _Podfile_:
 ```use_frameworks!```
-```pod 'OptimizelySwiftSDK', '~> 3.10.2'```
+```pod 'OptimizelySwiftSDK', '~> 3.10.3'```
 
2. Run the following command:
``` pod install ```
@@ -47,7 +47,7 @@ If you have a name conflict with other swift packages when you add the Optimizel 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.10.2```
+1. Add the following lines to the _Cartfile_:
```github "optimizely/swift-sdk" ~> 3.10.3```
2. Run the following command:
```carthage update```
From 2be555439c68a8a3bc167ec4aa0c5ab8c6da071c Mon Sep 17 00:00:00 2001 From: Muzahidul Islam <129880873+muzahidul-opti@users.noreply.github.com> Date: Thu, 30 Nov 2023 22:03:54 +0600 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b7f1f8..a03f4e32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Optimizely Swift SDK Changelog +## 3.10.3 +November 30, 2023 + +### Bug Fixes +* Remove redundant post request body in upload task. ([#521](https://github.com/optimizely/swift-sdk/pull/521/)). + +### Ehancement +* Add privacy manifest file ([#522](https://github.com/optimizely/swift-sdk/pull/522/)). +* Handle duplicate keys in experiment ([#523](https://github.com/optimizely/swift-sdk/pull/523/)). + ## 4.0.0-beta May 1, 2023 From d98989a53e18401b45aad9ec313e15d0b9089f0a Mon Sep 17 00:00:00 2001 From: Muzahidul Islam <129880873+muzahidul-opti@users.noreply.github.com> Date: Thu, 30 Nov 2023 22:04:35 +0600 Subject: [PATCH 3/4] Update swift.yml --- .github/workflows/swift.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 981b4a4a..afceda6e 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -17,7 +17,7 @@ on: description: release env: - VERSION: 4.0.0-beta + VERSION: 3.10.3 jobs: From 10daa599b1d5e76799081080665b6cd205dfd0bc Mon Sep 17 00:00:00 2001 From: Muzahidul Islam <129880873+muzahidul-opti@users.noreply.github.com> Date: Thu, 30 Nov 2023 23:01:53 +0600 Subject: [PATCH 4/4] Update CHANGELOG.md Co-authored-by: Jae Kim <45045038+jaeopt@users.noreply.github.com> --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a03f4e32..0eb2fdeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ November 30, 2023 ### Bug Fixes * Remove redundant post request body in upload task. ([#521](https://github.com/optimizely/swift-sdk/pull/521/)). -### Ehancement +### Enhancement * Add privacy manifest file ([#522](https://github.com/optimizely/swift-sdk/pull/522/)). * Handle duplicate keys in experiment ([#523](https://github.com/optimizely/swift-sdk/pull/523/)).