Merge branch 'develop' of github.com:JohnEstropia/CoreStore into develop

This commit is contained in:
John Estropia
2019-08-29 17:03:16 +09:00
7 changed files with 9 additions and 9 deletions

View File

View File

View File

@@ -1,6 +1,6 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "CoreStore" s.name = "CoreStore"
s.version = "6.3.1" s.version = "6.3.2"
s.swift_version = "5.0" s.swift_version = "5.0"
s.license = "MIT" s.license = "MIT"
s.homepage = "https://github.com/JohnEstropia/CoreStore" s.homepage = "https://github.com/JohnEstropia/CoreStore"

View File

@@ -17,7 +17,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>6.3.1</string> <string>6.3.2</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>

View File

@@ -462,8 +462,8 @@ extension AttributeProtocol {
let notification = CoreStoreObjectValueDiff<V>( let notification = CoreStoreObjectValueDiff<V>(
kind: kind, kind: kind,
newNativeValue: newValue as! V.QueryableNativeType?, newNativeValue: newValue as? V.QueryableNativeType,
oldNativeValue: oldValue as! V.QueryableNativeType?, oldNativeValue: oldValue as? V.QueryableNativeType,
isPrior: isPrior isPrior: isPrior
) )
changeHandler( changeHandler(
@@ -485,8 +485,8 @@ extension AttributeProtocol {
let notification = CoreStoreObjectTransformableDiff<V>( let notification = CoreStoreObjectTransformableDiff<V>(
kind: kind, kind: kind,
newValue: newValue as! V?, newValue: newValue as? V,
oldValue: oldValue as! V?, oldValue: oldValue as? V,
isPrior: isPrior isPrior: isPrior
) )
changeHandler( changeHandler(

View File

@@ -121,7 +121,7 @@ public class CustomSchemaMappingProvider: Hashable, SchemaMappingProvider {
// MARK: Equatable // MARK: Equatable
public static func ==(lhs: CustomMapping, rhs: CustomMapping) -> Bool { public static func == (lhs: CustomMapping, rhs: CustomMapping) -> Bool {
switch (lhs, rhs) { switch (lhs, rhs) {
@@ -324,7 +324,7 @@ public class CustomSchemaMappingProvider: Hashable, SchemaMappingProvider {
// MARK: Equatable // MARK: Equatable
public static func ==(lhs: CustomSchemaMappingProvider, rhs: CustomSchemaMappingProvider) -> Bool { public static func == (lhs: CustomSchemaMappingProvider, rhs: CustomSchemaMappingProvider) -> Bool {
return lhs.sourceVersion == rhs.sourceVersion return lhs.sourceVersion == rhs.sourceVersion
&& lhs.destinationVersion == rhs.destinationVersion && lhs.destinationVersion == rhs.destinationVersion

View File

@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>6.3.1</string> <string>6.3.2</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>