Skip to content

Commit

Permalink
Create 4.1 release (#148)
Browse files Browse the repository at this point in the history
* Update SwiftTweaks.podspec
* Bump Swift version to Swift 5
* Bump min-iOS-version to 10 in SwiftPM and CocoaPods
  • Loading branch information
Bryan Clark committed Jan 13, 2021
1 parent 0268b00 commit 8c0fd53
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription

let package = Package(
name: "SwiftTweaks",
platforms: [.iOS(.v9)],
platforms: [.iOS(.v10)],
products: [.library(name: "SwiftTweaks", targets: ["SwiftTweaks"])],
targets: [
.target(
Expand Down
6 changes: 3 additions & 3 deletions SwiftTweaks.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftTweaks"
s.version = "4.0.2"
s.version = "4.1"

s.summary = "Tweak your Swift-based app on-device."
s.description = "SwiftTweaks is a way to adjust your Swift-based iOS app on-device without needing to recompile. Read more about it on our blog: http://engineering.khanacademy.org/posts/introducing-swifttweaks.htm"
Expand All @@ -13,9 +13,9 @@ Pod::Spec.new do |s|
s.authors = "Khan Academy", "Bryan Clark"
s.social_media_url = "https://twitter.com/khanacademy"

s.platform = :ios, "9.0"
s.platform = :ios, "10.0"

s.source = { :git => "https://github.com/Khan/SwiftTweaks.git", :tag => "v4.0.2", :submodules => true }
s.source = { :git => "https://github.com/Khan/SwiftTweaks.git", :tag => "v4.1", :submodules => true }
s.source_files = "SwiftTweaks/**/*.swift"
s.resources = "SwiftTweaks/*.xcassets"

Expand Down
6 changes: 4 additions & 2 deletions SwiftTweaks.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@
93C942581BFBDC550054811A /* TweakBinding.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TweakBinding.swift; sourceTree = "<group>"; };
93DB80341BFCE4E80031D61A /* AnyTweak.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AnyTweak.swift; sourceTree = "<group>"; };
93E777031BED4BBD003F0DE2 /* TweakLibrary.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TweakLibrary.swift; sourceTree = "<group>"; };
93F648FE25AF8CF3001C3DAC /* Package.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Package.swift; sourceTree = "<group>"; };
AA356AEF1EB3B5A90063F4E2 /* TweakAction.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TweakAction.swift; sourceTree = "<group>"; };
AA356AF31EB3C5B40063F4E2 /* TweakActionTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TweakActionTests.swift; sourceTree = "<group>"; };
B0E03A541CFF818900BFB1E6 /* TweakDebug.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TweakDebug.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -268,6 +269,7 @@
93A84EC71BEAE86E0022D2F3 = {
isa = PBXGroup;
children = (
93F648FE25AF8CF3001C3DAC /* Package.swift */,
93A84ED31BEAE86E0022D2F3 /* SwiftTweaks */,
93A84EDF1BEAE86E0022D2F3 /* SwiftTweaksTests */,
93A84ED21BEAE86E0022D2F3 /* Products */,
Expand Down Expand Up @@ -632,7 +634,7 @@
SDKROOT = iphoneos;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
Expand Down Expand Up @@ -682,7 +684,7 @@
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
VERSIONING_SYSTEM = "apple-generic";
Expand Down
2 changes: 2 additions & 0 deletions iOS Example/iOS Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,7 @@
OTHER_SWIFT_FLAGS = "";
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
Expand Down Expand Up @@ -344,6 +345,7 @@
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
Expand Down

0 comments on commit 8c0fd53

Please sign in to comment.