mixpanel / mixpanel-swift

Official iOS (Swift) Tracking Library for Mixpanel Analytics
https://mixpanel.com
Apache License 2.0
434 stars 234 forks source link

Using the prefix v in front of the version number makes Xcode and SPM unhappy #536

Closed bonkowski closed 2 years ago

bonkowski commented 2 years ago

This is because SPM expects only numbers in the semantic version number.

The minimum package version “v3.0.2“ is not a semantic version in the form of “1.2.3”

jaredmixpanel commented 2 years ago

@bonkowski you can simply omit the "v" and just use "3.0.2"...

image

bonkowski commented 2 years ago

🤦🏻‍♂️thanks