Skip to content

Commit e4545e3

Browse files
authored
Merge pull request #124 from AliSoftware/hotfix/pod-fix
Pod hotfix
2 parents e18a4b1 + 52455e6 commit e4545e3

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

Diff for: .swift-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0

Diff for: .travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ matrix:
1212
- set -o pipefail && xcodebuild test -workspace Dip.xcworkspace -scheme Dip -sdk appletvsimulator -destination 'platform=tvOS Simulator,name=Apple TV 1080p,OS=latest' ONLY_ACTIVE_ARCH=NO | xcpretty -c
1313
- set -o pipefail && xcodebuild -workspace Dip.xcworkspace -scheme Dip -sdk watchsimulator -destination 'platform=watchOS Simulator,name=Apple Watch - 38mm,OS=latest' ONLY_ACTIVE_ARCH=NO | xcpretty - c
1414
- set -o pipefail && xcodebuild test -workspace Dip.xcworkspace -scheme DipSampleApp -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' ONLY_ACTIVE_ARCH=NO | xcpretty -c
15-
- pod lib lint --quick
15+
- pod spec lint
1616
- carthage build --no-skip-current
1717
os: osx
1818
osx_image: xcode8
1919
language: objective-c
20+
before_install:
21+
- gem install cocoapods --version 1.1.0.rc.2 --no-document
2022
- script:
2123
- swift build --clean && swift build && swift test
2224
os: linux

Diff for: Dip.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Dip"
3-
s.version = "5.0.0"
3+
s.version = "5.0.1"
44
s.summary = "Dependency Injection for Swift made easy."
55

66
s.description = <<-DESC

Diff for: Dip/Dip.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@
287287
0903B3691C161544002241C1 /* Debug */ = {
288288
isa = XCBuildConfiguration;
289289
buildSettings = {
290+
APPLICATION_EXTENSION_API_ONLY = YES;
290291
"CODE_SIGN_IDENTITY[sdk=*]" = "";
291292
COMBINE_HIDPI_IMAGES = YES;
292293
DEFINES_MODULE = YES;
@@ -310,6 +311,7 @@
310311
0903B36A1C161544002241C1 /* Release */ = {
311312
isa = XCBuildConfiguration;
312313
buildSettings = {
314+
APPLICATION_EXTENSION_API_ONLY = YES;
313315
"CODE_SIGN_IDENTITY[sdk=*]" = "";
314316
COMBINE_HIDPI_IMAGES = YES;
315317
DEFINES_MODULE = YES;
@@ -377,7 +379,7 @@
377379
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
378380
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
379381
COPY_PHASE_STRIP = NO;
380-
CURRENT_PROJECT_VERSION = 5.0.0;
382+
CURRENT_PROJECT_VERSION = 5.0.1;
381383
DEBUG_INFORMATION_FORMAT = dwarf;
382384
ENABLE_STRICT_OBJC_MSGSEND = YES;
383385
ENABLE_TESTABILITY = YES;
@@ -432,7 +434,7 @@
432434
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
433435
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
434436
COPY_PHASE_STRIP = NO;
435-
CURRENT_PROJECT_VERSION = 5.0.0;
437+
CURRENT_PROJECT_VERSION = 5.0.1;
436438
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
437439
ENABLE_NS_ASSERTIONS = NO;
438440
ENABLE_STRICT_OBJC_MSGSEND = YES;

0 commit comments

Comments
 (0)