parse-community / ParseLiveQuery-iOS-OSX

Parse LiveQuery Client for iOS/OS X.
https://parseplatform.org
Other
192 stars 133 forks source link

Podfile update needed #244

Closed kmaker closed 3 years ago

kmaker commented 3 years ago

I'm using ParseLiveQuery pod (https://cocoapods.org/pods/ParseLiveQuery) which currently depends on Parse 1.19.0. Parse 1.19.0 has compilation issues on Xcode 12.3, which they had fixed on 1.19.1. Could you update the ParseLiveQuery pod so it depends on this new version of Parse?

cbaker6 commented 3 years ago

You should be able to resolve this in your pod file without a release as ParseLiveQuery can use ~>1.19.0, per the Pod spec. Just add

pod 'Parse', '1.19.1'

to your Podfile

kmaker commented 3 years ago

Perfect. Thanks!