Skip to content

Commit 068a422

Browse files
chore!: Bump swift-tools-version to 5.5 and macosx to 12.00 to be compatible with Otel (#453)
**Requirements** * bumping swift-tools-version:5.5 and macosx to be compatible with Otel - masOS "10.13" -> "12.00" <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Raises Swift tools to 5.5 and bumps minimum macOS version to 12.0 across SPM, CocoaPods, and docs. > > - **Build/Platform support**: > - Update `Package.swift` to `swift-tools-version:5.5` and `.macOS(.v12)`. > - Update `LaunchDarkly.podspec` `ld.osx.deployment_target` to `"12.0"`. > - **Docs**: > - Update `README.md` supported macOS version to `12.00`. > - Add `CHANGELOG.md` entry noting Swift tools 5.5 and macOS 12 bump. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 6c340de. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
2 parents 9d25460 + 6c340de commit 068a422

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly iOS SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
### Features
6+
* bumping swift-tools-version:5.5 and macosx to be compatible with otel
7+
- masOS "10.13" -> "12.00"
8+
59
## [9.16.0](https://github.com/launchdarkly/ios-client-sdk/compare/9.15.0...9.16.0) (2025-09-11)
610

711

LaunchDarkly.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Pod::Spec.new do |ld|
2424
ld.ios.deployment_target = "13.0"
2525
ld.watchos.deployment_target = "6.0"
2626
ld.tvos.deployment_target = "13.0"
27-
ld.osx.deployment_target = "10.15"
27+
ld.osx.deployment_target = "12.0"
2828

2929
ld.source = { :git => ld.homepage + '.git', :tag => ld.version}
3030

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.5
22

33
import PackageDescription
44

55
let package = Package(
66
name: "LaunchDarkly",
77
platforms: [
88
.iOS(.v13),
9-
.macOS(.v10_15),
9+
.macOS(.v12),
1010
.watchOS(.v6),
1111
.tvOS(.v13)
1212
],

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ And supports the following device platforms:
3232
| iOS | 13.0 |
3333
| watchOS | 6.0 |
3434
| tvOS | 13.0 |
35-
| macOS | 10.15 |
35+
| macOS | 12.00 |
3636

3737
Installation
3838
-----------

0 commit comments

Comments
 (0)