Skip to content

Commit 5e24800

Browse files
committed
Merge branch 'develop'
2 parents b0ad545 + 4e19cb1 commit 5e24800

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

Package@swift-5.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
],
1010
dependencies: [
1111
.package(url: "https://github.com/ZeeQL/CSQLite3.git",
12-
from: "2.0.0")
12+
from: "2.0.2")
1313
],
1414
targets: [
1515
.target (name: "ZeeQL", dependencies: [ "CSQLite3" ]),

Sources/ZeeQL/Foundation/SimpleKVC.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public extension KeyValueCodingType {
3939

4040
func values(forKeys keys: [String]) -> [ String : Any ] {
4141
var values = [ String : Any ]()
42+
values.reserveCapacity(keys.count)
4243
for key in keys {
4344
guard let value = self.value(forKey: key) else { continue }
4445
values[key] = value

ZeeQL3.xcodeproj/project.pbxproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@
10051005
TargetAttributes = {
10061006
E8263C541E93B1E100508276 = {
10071007
CreatedOnToolsVersion = 8.2.1;
1008-
LastSwiftMigration = 0900;
1008+
LastSwiftMigration = 1100;
10091009
ProvisioningStyle = Automatic;
10101010
};
10111011
E8263C6D1E93C7DF00508276 = {
@@ -1020,22 +1020,23 @@
10201020
};
10211021
E8D279521E5504FA00453BBE = {
10221022
CreatedOnToolsVersion = 8.2.1;
1023-
LastSwiftMigration = 0900;
1023+
LastSwiftMigration = 1100;
10241024
ProvisioningStyle = Automatic;
10251025
};
10261026
E8D279651E55059800453BBE = {
10271027
CreatedOnToolsVersion = 8.2.1;
1028-
LastSwiftMigration = 0900;
1028+
LastSwiftMigration = 1100;
10291029
ProvisioningStyle = Automatic;
10301030
};
10311031
};
10321032
};
10331033
buildConfigurationList = E8D2794E1E5504FA00453BBE /* Build configuration list for PBXProject "ZeeQL3" */;
10341034
compatibilityVersion = "Xcode 3.2";
1035-
developmentRegion = English;
1035+
developmentRegion = en;
10361036
hasScannedForEncodings = 0;
10371037
knownRegions = (
10381038
en,
1039+
Base,
10391040
);
10401041
mainGroup = E8D2794A1E5504FA00453BBE;
10411042
productRefGroup = E8D279541E5504FA00453BBE /* Products */;

0 commit comments

Comments
 (0)