TextExpander / TextExpanderTouchSDK

TextExpander touch SDK
85 stars 13 forks source link

Please add semantic version tags #2

Closed dburr closed 9 years ago

dburr commented 11 years ago

I would like to add the TextExpander Touch SDK to the CocoaPods package manager repo.

CocoaPods is a tool for managing dependencies for OS X and iOS Xcode projects and provides a central repository for iOS/OS X libraries. This makes adding libraries to a project and updating them extremely easy and it will help users to resolve dependencies of the libraries they use.

However, the TextExpander Touch SDK doesn't have any version tags. CocoaPods requires that all versions be tagged with a version number. As such, my request to add TextExpander touch SDK to CocoaPods is currently being rejected.

Semantic version tags (instead of plain commit hashes/revisions) allow for resolution of cross-dependencies.

In case you didn’t know this yet; you can tag the current HEAD as, for instance, version 2.0.0, like so:

$ git tag -a 2.0.0 -m "Tag release 2.0.0" $ git push --tags

Thank you for your help and support.