File tree 8 files changed +21
-15
lines changed
Demo/TableKitDemo.xcodeproj
8 files changed +21
-15
lines changed Original file line number Diff line number Diff line change 1
- 4.2
1
+ 5.0
Original file line number Diff line number Diff line change 1
1
language : objective-c
2
- osx_image : xcode10
2
+ osx_image : xcode10.1
3
3
branches :
4
4
only :
5
5
- master
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 2.9.0] ( https://github.com/maxsokolov/TableKit/releases/tag/2.9.0 )
6
+ Released on 2019-04-04.
7
+ - Swift 5.0 support.
8
+
5
9
## [ 2.8.0] ( https://github.com/maxsokolov/TableKit/releases/tag/2.8.0 )
6
10
Released on 2018-09-30.
7
11
- Swift 4.2 support.
Original file line number Diff line number Diff line change 248
248
developmentRegion = English;
249
249
hasScannedForEncodings = 0;
250
250
knownRegions = (
251
+ English,
251
252
en,
252
253
Base,
253
254
);
377
378
ONLY_ACTIVE_ARCH = YES;
378
379
SDKROOT = iphoneos;
379
380
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
380
- SWIFT_VERSION = 4 .0;
381
+ SWIFT_VERSION = 5 .0;
381
382
};
382
383
name = Debug;
383
384
};
425
426
MTL_ENABLE_DEBUG_INFO = NO;
426
427
SDKROOT = iphoneos;
427
428
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
428
- SWIFT_VERSION = 4 .0;
429
+ SWIFT_VERSION = 5 .0;
429
430
VALIDATE_PRODUCT = YES;
430
431
};
431
432
name = Release;
443
444
PRODUCT_BUNDLE_IDENTIFIER = com.tablekit.demo;
444
445
PRODUCT_NAME = TableKitDemo;
445
446
PROVISIONING_PROFILE = "";
446
- SWIFT_VERSION = 4.2 ;
447
+ SWIFT_VERSION = 5.0 ;
447
448
};
448
449
name = Debug;
449
450
};
460
461
PRODUCT_BUNDLE_IDENTIFIER = com.tablekit.demo;
461
462
PRODUCT_NAME = TableKitDemo;
462
463
PROVISIONING_PROFILE = "";
463
- SWIFT_VERSION = 4.2 ;
464
+ SWIFT_VERSION = 5.0 ;
464
465
};
465
466
name = Release;
466
467
};
Original file line number Diff line number Diff line change 2
2
3
3
<p align =" left " >
4
4
<a href="https://travis-ci.org/maxsokolov/TableKit"><img src="https://api.travis-ci.org/maxsokolov/TableKit.svg" alt="Build Status" /></a>
5
- <a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/Swift_4.2 -compatible-4BC51D.svg?style=flat" alt="Swift 4.2 compatible" /></a>
5
+ <a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/Swift_5.0 -compatible-4BC51D.svg?style=flat" alt="Swift 5.0 compatible" /></a>
6
6
<a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage compatible" /></a>
7
7
<a href="https://cocoapods.org/pods/tablekit"><img src="https://img.shields.io/badge/pod-2.8.1-blue.svg" alt="CocoaPods compatible" /></a>
8
8
<img src="https://img.shields.io/badge/platform-iOS-blue.svg?style=flat" alt="Platform iOS" />
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ open class TableRow<CellType: ConfigurableCell>: Row where CellType: UITableView
113
113
open func removeAction( forActionId actionId: String ) {
114
114
115
115
for (key, value) in actions {
116
- if let actionIndex = value. index ( where: { $0. id == actionId } ) {
116
+ if let actionIndex = value. firstIndex ( where: { $0. id == actionId } ) {
117
117
actions [ key] ? . remove ( at: actionIndex)
118
118
}
119
119
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ Pod::Spec.new do |s|
2
2
s . name = 'TableKit'
3
3
s . module_name = 'TableKit'
4
4
5
- s . version = '2.8.1 '
5
+ s . version = '2.9.0 '
6
6
7
7
s . homepage = 'https://github.com/maxsokolov/TableKit'
8
8
s . summary = 'Type-safe declarative table views with Swift.'
Original file line number Diff line number Diff line change 195
195
developmentRegion = English;
196
196
hasScannedForEncodings = 0;
197
197
knownRegions = (
198
+ English,
198
199
en,
199
200
);
200
201
mainGroup = DA9EA74C1D0B679A0021F650;
315
316
ONLY_ACTIVE_ARCH = YES;
316
317
SDKROOT = iphoneos;
317
318
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
318
- SWIFT_VERSION = 4 .0;
319
+ SWIFT_VERSION = 5 .0;
319
320
TARGETED_DEVICE_FAMILY = "1,2";
320
321
VERSIONING_SYSTEM = "apple-generic";
321
322
VERSION_INFO_PREFIX = "";
368
369
MTL_ENABLE_DEBUG_INFO = NO;
369
370
SDKROOT = iphoneos;
370
371
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
371
- SWIFT_VERSION = 4 .0;
372
+ SWIFT_VERSION = 5 .0;
372
373
TARGETED_DEVICE_FAMILY = "1,2";
373
374
VALIDATE_PRODUCT = YES;
374
375
VERSIONING_SYSTEM = "apple-generic";
393
394
PRODUCT_NAME = "$(TARGET_NAME)";
394
395
SKIP_INSTALL = YES;
395
396
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
396
- SWIFT_VERSION = 4.2 ;
397
+ SWIFT_VERSION = 5.0 ;
397
398
};
398
399
name = Debug;
399
400
};
413
414
PRODUCT_BUNDLE_IDENTIFIER = com.tablekit.TableKit;
414
415
PRODUCT_NAME = "$(TARGET_NAME)";
415
416
SKIP_INSTALL = YES;
416
- SWIFT_VERSION = 4.2 ;
417
+ SWIFT_VERSION = 5.0 ;
417
418
};
418
419
name = Release;
419
420
};
425
426
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
426
427
PRODUCT_BUNDLE_IDENTIFIER = com.tablekit.TableKitTests;
427
428
PRODUCT_NAME = "$(TARGET_NAME)";
428
- SWIFT_VERSION = 4.2 ;
429
+ SWIFT_VERSION = 5.0 ;
429
430
};
430
431
name = Debug;
431
432
};
437
438
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
438
439
PRODUCT_BUNDLE_IDENTIFIER = com.tablekit.TableKitTests;
439
440
PRODUCT_NAME = "$(TARGET_NAME)";
440
- SWIFT_VERSION = 4.2 ;
441
+ SWIFT_VERSION = 5.0 ;
441
442
};
442
443
name = Release;
443
444
};
You can’t perform that action at this time.
0 commit comments