mirror of
https://github.com/JohnEstropia/CoreStore.git
synced 2026-04-01 07:03:06 +02:00
Merge branch 'develop' of github.com:JohnEstropia/CoreStore into develop
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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(
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user