Skip to content

Commit

Permalink
SPT-1998 encrease deployment target and swift version
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Frolov committed Mar 20, 2024
1 parent 37fc648 commit 14f1f97
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion NodeKit.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Pod::Spec.new do |s|
s.license = "MIT"
s.author = { "Alexander Kravchenkov" => "[email protected]" }

s.ios.deployment_target = "11.0"
s.ios.deployment_target = "13.0"

s.source = { :git => "https://github.com/surfstudio/NodeKit.git", :tag => "#{s.version}"}

Expand Down
4 changes: 2 additions & 2 deletions NodeKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -1369,7 +1369,7 @@
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_NSHumanReadableCopyright = "";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
8 changes: 4 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
// swift-tools-version:5.3
// swift-tools-version:5.7
import PackageDescription

let package = Package(
name: "NodeKit",
platforms: [
.macOS(.v10_12),
.iOS(.v11),
.macOS(.v11),
.iOS(.v13),
],
products: [
.library(
name: "NodeKit",
targets: ["NodeKit"]),
],
dependencies: [
.package(url: "https://github.com/surfstudio/CoreEvents", .exact("2.0.2"))
.package(url: "https://github.com/surfstudio/CoreEvents", exact: "2.0.2")
],
targets: [
.target(
Expand Down

0 comments on commit 14f1f97

Please sign in to comment.