Skip to content

Commit ef1c067

Browse files
committed
Merge branch 'master' into update-v0.1.1
2 parents e5c1f5d + 53efb27 commit ef1c067

6 files changed

Lines changed: 23 additions & 14 deletions

File tree

.swiftlint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
excluded:
2+
- Pods/
3+
- Demo/
4+
- Carthage/

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode10
2+
osx_image: xcode10.3
33
xcode_workspace: StackBarButtonItem.xcworkspace
44
xcode_scheme: StackBarButtonItem-iOS
55
xcode_sdk: iphonesimulator
@@ -8,7 +8,6 @@ before_install:
88
- gem install cocoapods --pre
99
- pod repo update
1010
- brew update
11-
- brew upgrade carthage
1211
- carthage update --no-use-binaries --platform iOS
1312
before_script:
1413
- set -o pipefail

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" ~> 4.3.1
1+
github "ReactiveX/RxSwift" ~> 5.0.1

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "ReactiveX/RxSwift" "4.3.1"
1+
github "ReactiveX/RxSwift" "5.0.1"

Demo/Demo.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
PRODUCT_BUNDLE_IDENTIFIER = com.funzin.Demo;
325325
PRODUCT_NAME = "$(TARGET_NAME)";
326326
PROVISIONING_PROFILE_SPECIFIER = "";
327-
SWIFT_VERSION = 4.2;
327+
SWIFT_VERSION = 5.0;
328328
TARGETED_DEVICE_FAMILY = "1,2";
329329
};
330330
name = Debug;
@@ -344,7 +344,7 @@
344344
PRODUCT_BUNDLE_IDENTIFIER = com.funzin.Demo;
345345
PRODUCT_NAME = "$(TARGET_NAME)";
346346
PROVISIONING_PROFILE_SPECIFIER = "";
347-
SWIFT_VERSION = 4.2;
347+
SWIFT_VERSION = 5.0;
348348
TARGETED_DEVICE_FAMILY = "1,2";
349349
};
350350
name = Release;

StackBarButtonItem.xcodeproj/project.pbxproj

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
314AF962214666F70008202E /* StackBarButtonItemTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4EC7A502136B7EE0034767C /* StackBarButtonItemTests.swift */; };
1313
314AF9662146783F0008202E /* DeviceExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 314AF9652146783F0008202E /* DeviceExtension.swift */; };
1414
31658C74217B0AEF00FD3E18 /* UINavigationItem+StackBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31658C73217B0AEF00FD3E18 /* UINavigationItem+StackBarButtonItem.swift */; };
15+
3176E4C1230541DA00CB14B0 /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4EC7A992136BC5C0034767C /* RxCocoa.framework */; };
16+
3176E4C2230541DA00CB14B0 /* RxRelay.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3176E4BC2305411300CB14B0 /* RxRelay.framework */; };
17+
3176E4C3230541DA00CB14B0 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4EC7A9B2136BC5C0034767C /* RxSwift.framework */; };
1518
D4EC7A912136BA8F0034767C /* StackBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4EC7A5E2136B8070034767C /* StackBarButtonItem.swift */; };
16-
D4EC7A9E2136BC5D0034767C /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4EC7A992136BC5C0034767C /* RxCocoa.framework */; };
17-
D4EC7AA02136BC5D0034767C /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D4EC7A9B2136BC5C0034767C /* RxSwift.framework */; };
1819
/* End PBXBuildFile section */
1920

2021
/* Begin PBXContainerItemProxy section */
@@ -33,6 +34,7 @@
3334
314AF9392146666B0008202E /* StackBarButtonItemTests-iOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "StackBarButtonItemTests-iOS.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
3435
314AF9652146783F0008202E /* DeviceExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeviceExtension.swift; sourceTree = "<group>"; };
3536
31658C73217B0AEF00FD3E18 /* UINavigationItem+StackBarButtonItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UINavigationItem+StackBarButtonItem.swift"; sourceTree = "<group>"; };
37+
3176E4BC2305411300CB14B0 /* RxRelay.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxRelay.framework; path = Carthage/Build/iOS/RxRelay.framework; sourceTree = "<group>"; };
3638
D4EC7A452136B7EE0034767C /* StackBarButtonItem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StackBarButtonItem.h; sourceTree = "<group>"; };
3739
D4EC7A502136B7EE0034767C /* StackBarButtonItemTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StackBarButtonItemTests.swift; sourceTree = "<group>"; };
3840
D4EC7A5E2136B8070034767C /* StackBarButtonItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StackBarButtonItem.swift; sourceTree = "<group>"; };
@@ -58,8 +60,9 @@
5860
isa = PBXFrameworksBuildPhase;
5961
buildActionMask = 2147483647;
6062
files = (
61-
D4EC7A9E2136BC5D0034767C /* RxCocoa.framework in Frameworks */,
62-
D4EC7AA02136BC5D0034767C /* RxSwift.framework in Frameworks */,
63+
3176E4C1230541DA00CB14B0 /* RxCocoa.framework in Frameworks */,
64+
3176E4C2230541DA00CB14B0 /* RxRelay.framework in Frameworks */,
65+
3176E4C3230541DA00CB14B0 /* RxSwift.framework in Frameworks */,
6366
);
6467
runOnlyForDeploymentPostprocessing = 0;
6568
};
@@ -126,6 +129,7 @@
126129
D4EC7A962136BC5C0034767C /* Frameworks */ = {
127130
isa = PBXGroup;
128131
children = (
132+
3176E4BC2305411300CB14B0 /* RxRelay.framework */,
129133
D4EC7A972136BC5C0034767C /* NSObject_Rx.framework */,
130134
D4EC7A982136BC5C0034767C /* RxBlocking.framework */,
131135
D4EC7A992136BC5C0034767C /* RxCocoa.framework */,
@@ -211,6 +215,7 @@
211215
hasScannedForEncodings = 0;
212216
knownRegions = (
213217
en,
218+
Base,
214219
);
215220
mainGroup = D4EC7A382136B7EE0034767C;
216221
productRefGroup = D4EC7A432136B7EE0034767C /* Products */;
@@ -249,6 +254,7 @@
249254
inputPaths = (
250255
"$(SRCROOT)/Carthage/Build/iOS/RxSwift.framework",
251256
"$(SRCROOT)/Carthage/Build/iOS/RxCocoa.framework",
257+
"$(SRCROOT)/Carthage/Build/iOS/RxRelay.framework",
252258
);
253259
outputPaths = (
254260
);
@@ -303,7 +309,7 @@
303309
);
304310
PRODUCT_BUNDLE_IDENTIFIER = "com.funzin.StackBarButtonItemTests-iOS";
305311
PRODUCT_NAME = "$(TARGET_NAME)";
306-
SWIFT_VERSION = 4.2;
312+
SWIFT_VERSION = 5.0;
307313
TARGETED_DEVICE_FAMILY = "1,2";
308314
};
309315
name = Debug;
@@ -322,7 +328,7 @@
322328
);
323329
PRODUCT_BUNDLE_IDENTIFIER = "com.funzin.StackBarButtonItemTests-iOS";
324330
PRODUCT_NAME = "$(TARGET_NAME)";
325-
SWIFT_VERSION = 4.2;
331+
SWIFT_VERSION = 5.0;
326332
TARGETED_DEVICE_FAMILY = "1,2";
327333
};
328334
name = Release;
@@ -473,7 +479,7 @@
473479
PRODUCT_NAME = "$(PROJECT_NAME)";
474480
PROVISIONING_PROFILE_SPECIFIER = "";
475481
SKIP_INSTALL = YES;
476-
SWIFT_VERSION = 4.2;
482+
SWIFT_VERSION = 5.0;
477483
TARGETED_DEVICE_FAMILY = "1,2";
478484
};
479485
name = Debug;
@@ -504,7 +510,7 @@
504510
PRODUCT_NAME = "$(PROJECT_NAME)";
505511
PROVISIONING_PROFILE_SPECIFIER = "";
506512
SKIP_INSTALL = YES;
507-
SWIFT_VERSION = 4.2;
513+
SWIFT_VERSION = 5.0;
508514
TARGETED_DEVICE_FAMILY = "1,2";
509515
};
510516
name = Release;

0 commit comments

Comments
 (0)