Skip to content

Commit 304c439

Browse files
committed
Modify version to 1.10.
Former-commit-id: 70da036
1 parent 84f99fd commit 304c439

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

MVVMReactiveCocoa/MRCAppDelegate.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
5353
// iconColor:HexRGB(colorI2)
5454
// iconScale:1
5555
// andSize:CGSizeMake(1024, 1024)];
56-
5756
return YES;
5857
}
5958

MVVMReactiveCocoa/MVVMReactiveCocoa-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.1</string>
20+
<string>1.10</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -72,7 +72,7 @@
7272
</dict>
7373
</array>
7474
<key>CFBundleVersion</key>
75-
<string>156</string>
75+
<string>158</string>
7676
<key>LSRequiresIPhoneOS</key>
7777
<true/>
7878
<key>UIAppFonts</key>

MVVMReactiveCocoa/View/MRCReposViewController.xib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7531" systemVersion="14C1510" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
2+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14C1510" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
33
<dependencies>
4-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7520"/>
4+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
55
</dependencies>
66
<objects>
77
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MRCReposViewController">

MVVMReactiveCocoa/ViewModel/BaseClass/MRCViewModel.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ + (instancetype)allocWithZone:(struct _NSZone *)zone {
4242

4343
- (instancetype)initWithServices:(id)services params:(id)params {
4444
self = [super init];
45-
if (self) {
45+
if (self) {
4646
self.shouldFetchLocalDataOnViewModelInitialize = YES;
4747
self.shouldRequestRemoteDataOnViewDidLoad = YES;
4848
self.title = params[@"title"];

0 commit comments

Comments
 (0)