Skip to content

Commit 55d698e

Browse files
[FSSDK-11465] chore: prepare for release 5.1.1 (#594)
* Update swift.yml * Add exp id an variation id into decision notiifcation payload * Update doc for release 5.1.1 * update yml * ci(git-action): auto release prep for 5.1.1 (#595) Co-authored-by: optibot <[email protected]> --------- Co-authored-by: optibot <[email protected]> Co-authored-by: optibot <[email protected]>
1 parent 4dffe6d commit 55d698e

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.github/workflows/swift.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
description: release
1818

1919
env:
20-
VERSION: 5.1.0
20+
VERSION: 5.1.1
2121

2222
jobs:
2323

@@ -97,4 +97,4 @@ jobs:
9797
COCOAPODS_VERSION: '1.15.2'
9898
run: |
9999
gem install cocoapods -v $COCOAPODS_VERSION
100-
Scripts/run_release.sh
100+
Scripts/run_release.sh

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+
## 5.1.1
4+
Jun 2th, 2025
5+
6+
### Functionality Enhancement
7+
* Add experiment id and variation id added into decision notification payload ([#589](https://github.com/optimizely/swift-sdk/pull/589)).
8+
39
## 5.1.0
410
February 4th, 2025
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 = "5.1.0"
4+
s.version = "5.1.1"
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" }

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ let package = Package(
2424
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")]
2525
)
2626
],
27-
swiftLanguageVersions: [.v5, .version("5.9")]
27+
swiftLanguageVersions: [.v5]
2828
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ 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', '~> 5.1.0'```
42+
```pod 'OptimizelySwiftSDK', '~> 5.1.1'```
4343
</pre>
4444

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

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 = "5.1.0"
20+
let OPTIMIZELYSDKVERSION = "5.1.1"

0 commit comments

Comments
 (0)