Skip to content

[FSSDK-11465] chore: prepare for release 5.1.1 #594

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
description: release

env:
VERSION: 5.1.0
VERSION: 5.1.1

jobs:

Expand Down Expand Up @@ -97,4 +97,4 @@ jobs:
COCOAPODS_VERSION: '1.15.2'
run: |
gem install cocoapods -v $COCOAPODS_VERSION
Scripts/run_release.sh
Scripts/run_release.sh
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Optimizely Swift SDK Changelog

## 5.1.1
Jun 2th, 2025

### Functionality Enhancement
* Add experiment id and variation id added into decision notification payload ([#589](https://github.com/optimizely/swift-sdk/pull/589)).

## 5.1.0
February 4th, 2025

Expand Down
2 changes: 1 addition & 1 deletion OptimizelySwiftSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "OptimizelySwiftSDK"
s.module_name = "Optimizely"
s.version = "5.1.0"
s.version = "5.1.1"
s.summary = "Optimizely experiment framework for iOS/tvOS/watchOS"
s.homepage = "https://docs.developers.optimizely.com/experimentation/v4.0.0-full-stack/docs"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ let package = Package(
resources: [.copy("Supporting Files/PrivacyInfo.xcprivacy")]
)
],
swiftLanguageVersions: [.v5, .version("5.9")]
swiftLanguageVersions: [.v5]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_:<pre>
```use_frameworks!```
```pod 'OptimizelySwiftSDK', '~> 5.1.0'```
```pod 'OptimizelySwiftSDK', '~> 5.1.1'```
</pre>

2. Run the following command: <pre>``` pod install ```</pre>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Utils/SDKVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
/// Do not edit this field.
/// - It is auto updated (Scripts/updated_version.sh) to reflect the current version
/// - Do not put underscores in the name (Swiftlint can modify unexpectedly)
let OPTIMIZELYSDKVERSION = "5.1.0"
let OPTIMIZELYSDKVERSION = "5.1.1"
Loading