Skip to content

Commit

Permalink
updates for new cocoapods and Xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-khashimov committed Nov 26, 2023
1 parent ddac2dd commit a0646fc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MACOSX_DEPLOYMENT_TARGET = 14.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.SwiftFortuneWheel.SwiftFortuneWheelDemo-macOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -520,7 +520,7 @@
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MACOSX_DEPLOYMENT_TARGET = 14.0;
PRODUCT_BUNDLE_IDENTIFIER = "com.SwiftFortuneWheel.SwiftFortuneWheelDemo-macOS";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PackageDescription
let package = Package(
name: "SwiftFortuneWheel",
platforms: [
.iOS(.v9), .tvOS(.v9), .macOS(.v10_11)
.iOS(.v9), .tvOS(.v9), .macOS(.v10_13)
],
products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages.
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ Documentation is generated with [jazzy](https://github.com/realm/jazzy) and host

| App name | Swift | Xcode | Platforms |
|---|---|---|---|
| 1.1.x - current version | Swift 5.0 | Xcode 11 | iOS 9.0 / macOS 10.11 / tvOS 9.0 |
| 1.1.4 - current version | Swift 5.x | Xcode 14 | iOS 9.0 / macOS 10.13 / tvOS 9.0 |
| 1.1.x - 1.4.3 | Swift 5.0 | Xcode 11 | iOS 9.0 / macOS 10.11 / tvOS 9.0 |
| 0.x.x - 1.0.x | Swift 5.0 | Xcode 11 | iOS 9.0 |

## Migration
Expand Down
2 changes: 1 addition & 1 deletion SwiftFortuneWheel.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Pod::Spec.new do |s|
s.author = { "Sherzod Khashimov" => "[email protected]" }
s.social_media_url = ""
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.osx.deployment_target = "10.13"
s.tvos.deployment_target = "9.0"
s.swift_versions = "5.0"
s.source = { :git => "https://github.com/sh-khashimov/SwiftFortuneWheel.git", :tag => s.version.to_s }
Expand Down
4 changes: 2 additions & 2 deletions SwiftFortuneWheel.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.13;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = "com.SwiftFortuneWheel.SwiftFortuneWheel-iOS";
PRODUCT_NAME = SwiftFortuneWheel;
Expand Down Expand Up @@ -781,7 +781,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.13;
PRODUCT_BUNDLE_IDENTIFIER = "com.SwiftFortuneWheel.SwiftFortuneWheel-iOS";
PRODUCT_NAME = SwiftFortuneWheel;
SDKROOT = iphoneos;
Expand Down

0 comments on commit a0646fc

Please sign in to comment.