Skip to content

Commit aa9c0dc

Browse files
Merge branch 'master' into muzahid/vuid-optln
2 parents 6b1acd8 + 3635373 commit aa9c0dc

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.github/workflows/swift.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
description: release
1818

1919
env:
20-
VERSION: 4.0.0
20+
VERSION: 4.1.0
2121

2222
jobs:
2323

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
Scripts/prepare_simulator.sh
9494
Scripts/run_unit_tests.sh
9595
- name: Check on failures (Archive Test Results)
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9797
if: steps.unit_tests.outcome != 'success'
9898
with:
9999
name: build-logs-${{ matrix.device }}-${{ matrix.os }}

CHANGELOG.md

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

3+
## 4.1.0
4+
November 8, 2024
5+
6+
### New Features
7+
* Batch UPS lookup and save calls in decideAll and decideForKeys methods ([#559](https://github.com/optimizely/swift-sdk/pull/559/)).
8+
39
## 4.0.0
410
Jan 18, 2024
511

OptimizelySwiftSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "OptimizelySwiftSDK"
33
s.module_name = "Optimizely"
4-
s.version = "4.0.0"
4+
s.version = "4.1.0"
55
s.summary = "Optimizely experiment framework for iOS/tvOS/watchOS"
66
s.homepage = "https://docs.developers.optimizely.com/experimentation/v4.0.0-full-stack/docs"
77
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ If you have a name conflict with other swift packages when you add the Optimizel
3939
#### CocoaPods
4040
1. Add the following lines to the _Podfile_:<pre>
4141
```use_frameworks!```
42-
```pod 'OptimizelySwiftSDK', '~> 4.0.0'```
42+
```pod 'OptimizelySwiftSDK', '~> 4.1.0'```
4343
</pre>
4444

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

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

4949
#### Carthage
50-
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 4.0.0```</pre>
50+
1. Add the following lines to the _Cartfile_:<pre>```github "optimizely/swift-sdk" ~> 4.1.0```</pre>
5151

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

Sources/Utils/SDKVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
/// Do not edit this field.
1818
/// - It is auto updated (Scripts/updated_version.sh) to reflect the current version
1919
/// - Do not put underscores in the name (Swiftlint can modify unexpectedly)
20-
let OPTIMIZELYSDKVERSION = "4.0.0"
20+
let OPTIMIZELYSDKVERSION = "4.1.0"

0 commit comments

Comments
 (0)