Skip to content
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
2 changes: 1 addition & 1 deletion .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.4.1
VERSION: 5.4.2

jobs:

Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Optimizely Swift SDK Changelog

## 5.4.2
July 9, 2026

### Fixes

- Use attribute id instead of key for CMAB prediction requests ([#648](https://github.com/optimizely/swift-sdk/pull/648))
- fix: defer NWPathMonitor creation to avoid crash during multi-SDK startup ([#650](https://github.com/optimizely/swift-sdk/pull/650))
- fix: prevent EXC_BAD_ACCESS from premature URLSession deallocation ([#649](https://github.com/optimizely/swift-sdk/pull/649))
- Replace non-numeric holdout placeholder IDs in event-construction tests ([#646](https://github.com/optimizely/swift-sdk/pull/646))

## 5.4.1
June 24, 2026

Expand Down
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.4.1'```
```pod 'OptimizelySwiftSDK', '~> 5.4.2'```
</pre>

2. Run the following command: <pre>``` pod install ```</pre>
Expand Down
Loading