Skip to content

Commit

Permalink
Adding support for Realm 10
Browse files Browse the repository at this point in the history
  • Loading branch information
farktronix committed Oct 26, 2020
1 parent 0c00204 commit fc50dd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RealmConverter.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'RealmConverter'
s.version = '0.5.2'
s.version = '0.5.3'
s.license = { :type => 'Apache-2.0', :file => 'LICENSE' }
s.summary = 'A library that provides the ability to import/export Realm files from a variety of data container formats.'
s.homepage = 'https://realm.io'
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |s|

s.source_files = 'RealmConverter/**/*.{swift,h,m,c}'

s.dependency 'Realm', '~> 3.8.0'
s.dependency 'Realm', '~> 10.0'
s.dependency 'PathKit'
s.dependency 'CSwiftV'
s.dependency 'SSZipArchive'
Expand Down
4 changes: 4 additions & 0 deletions RealmConverter/Schema/ImportObjectSchema.swift
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ extension RLMPropertyType: CustomStringConvertible, CustomDebugStringConvertible
return "object"
case .linkingObjects:
return "linkingobjects"
case .objectId:
return "objectID"
case .decimal128:
return "decimal128"
}
}

Expand Down

0 comments on commit fc50dd4

Please sign in to comment.