Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EyreFree committed Oct 8, 2019
1 parent 0184023 commit 2f90683
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ before_install:
script:
- set -o pipefail
- sh Startup.sh
- pod lib lint --allow-warnings
- pod lib lint --allow-warnings --verbose

after_success:
- sleep 3
Expand Down
10 changes: 5 additions & 5 deletions EFFoundation.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'EFFoundation'
s.version = '0.10.2'
s.version = '1.0.0'
s.summary = 'EFFoundation.'

s.description = <<-DESC
Expand All @@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.watchos.deployment_target = '2.0'

s.subspec 'Core' do |core|
core.source_files = 'EFFoundation/Core/**/*'
core.source_files = 'EFFoundation/Core/*.{h,swift}'
end

s.subspec 'Attributes' do |attributes|
Expand All @@ -33,23 +33,23 @@ Pod::Spec.new do |s|
attributes.osx.deployment_target = '10.11'
attributes.watchos.deployment_target = '2.0'

attributes.source_files = 'EFFoundation/Attributes/**/*'
attributes.source_files = 'EFFoundation/Attributes/*.{h,swift}'
attributes.dependency 'EFFoundation/Core'
attributes.dependency 'SwiftyAttributes', '>= 5.1.1'
end

s.subspec 'Device' do |device|
device.ios.deployment_target = '8.0'

device.source_files = 'EFFoundation/Device/**/*'
device.source_files = 'EFFoundation/Device/*.{h,swift}'
device.dependency 'EFFoundation/Core'
device.dependency 'DeviceKit', '>= 2.2.0'
end

s.subspec 'Reachability' do |reachability|
reachability.ios.deployment_target = '8.0'

reachability.source_files = 'EFFoundation/Reachability/**/*'
reachability.source_files = 'EFFoundation/Reachability/*.{h,swift}'
reachability.dependency 'EFFoundation/Core'
reachability.dependency 'ReachabilitySwift', '>= 4.3.1'
end
Expand Down
4 changes: 2 additions & 2 deletions EFFoundation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -891,7 +891,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MACOSX_DEPLOYMENT_TARGET = 10.11;
MACOSX_DEPLOYMENT_TARGET = 10.10;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
2 changes: 1 addition & 1 deletion EFFoundation/Core/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.1.0</string>
<string>1.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion EFFoundation/Core/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.1.0</string>
<string>1.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 2f90683

Please sign in to comment.