Skip to content

Commit

Permalink
Merge pull request #78 from layoutBox/ios_deployment_target_8
Browse files Browse the repository at this point in the history
Update the Podspec minimum iOS platform to 8.0
  • Loading branch information
lucdion authored Apr 16, 2018
2 parents cb86e1c + bda52e4 commit 075af2a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Example/FlexLayoutSample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -600,7 +600,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
14 changes: 4 additions & 10 deletions FlexLayout.podspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@

Pod::Spec.new do |spec|
spec.name = "FlexLayout"
spec.version = "1.3.5"
spec.version = "1.3.6"
spec.summary = "FlexLayout"

spec.homepage = "https://github.com/lucdion/FlexLayout.git"
spec.license = "BSD 3-clause"
spec.author = { "Luc Dion" => "[email protected]" }

spec.author = {
"Luc Dion" => "[email protected]"
}

spec.platform = :ios, "9.0"

spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/lucdion/FlexLayout.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}"
spec.source_files = "Sources/**/*.{swift,h,m,mm,cpp,c}"
spec.public_header_files = "Sources/yoga/{Yoga,YGEnums,YGMacros}.h", "Sources/YogaKit/{UIView+Yoga,YGLayout}.h"


# Should match yoga_defs.bzl + BUCK configuration
spec.compiler_flags = [
'-fno-omit-frame-pointer',
Expand Down
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- FlexLayout (1.3.5)
- FlexLayout (1.3.6)
- Nimble (7.0.3)
- PinLayout (1.6.0)
- Quick (1.2.0)
Expand Down Expand Up @@ -27,7 +27,7 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
FlexLayout: f201d829cc720412fa7bbb0e548d239b01b24724
FlexLayout: ad7c468dd6314e14a7d02ba6354c585ff3248e52
Nimble: 7f5a9c447a33002645a071bddafbfb24ea70e0ac
PinLayout: a2bbe9057d49a1e326b13dc4fe8c14751f8c8844
Quick: 58d203b1c5e27fff7229c4c1ae445ad7069a7a08
Expand Down

0 comments on commit 075af2a

Please sign in to comment.