Skip to content

Commit

Permalink
Merge pull request #19 from Lickability/feature/swift-6
Browse files Browse the repository at this point in the history
Setting to iOS 16
  • Loading branch information
Cordavi authored Oct 30, 2024
2 parents bd7d435 + 2f2c3bd commit 8977298
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Networking.podspec.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "Networking",
"version": "0.1.0",
"version": "3.0.0",
"homepage": "https://github.com/Lickability/Networking",
"source": {
"git": "https://github.com/Lickability/Networking.git",
"tag": "0.1.0"
"tag": "3.0.0"
},
"summary": "A library that handles networking.",
"authors" : {
Expand All @@ -16,9 +16,9 @@
"file": "LICENSE"
},
"platforms": {
"ios": "13.0"
"ios": "16.0"
},
"swift_version": "5.0",
"swift_version": "6.0",
"requires_arc": true,
"frameworks": [
"Foundation"
Expand Down
12 changes: 6 additions & 6 deletions Networking.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -455,7 +455,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = iphoneos;
Expand All @@ -476,7 +476,7 @@
DEVELOPMENT_TEAM = JL4AKR8DVC;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = Example/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -497,7 +497,7 @@
DEVELOPMENT_TEAM = JL4AKR8DVC;
ENABLE_PREVIEWS = YES;
INFOPLIST_FILE = Example/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -516,7 +516,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = JL4AKR8DVC;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -537,7 +537,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = JL4AKR8DVC;
INFOPLIST_FILE = Tests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.5;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.3
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand All @@ -7,7 +7,7 @@ let name = "Networking"
let package = Package(
name: name,
defaultLocalization: "en",
platforms: [.iOS(.v13)],
platforms: [.iOS(.v16)],
products: [.library(name: name, targets: [name])],
targets: [.target(name: name, resources: [.process("Resources")])]
)

0 comments on commit 8977298

Please sign in to comment.