ANSegmentedControl icon indicating copy to clipboard operation
ANSegmentedControl copied to clipboard

Please add semantic version tags & license

Open fabiopelosin opened this issue 12 years ago • 0 comments

I’ve recently added ANSegmentedControl to the CocoaPods package manager repo.

CocoaPods is a tool for managing dependencies for OSX and iOS Xcode projects and provides a central repository for iOS/OSX 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, ANSegmentedControl doesn't have any version tags. I’ve added the current HEAD as version 0.0.1, but a version tag will make dependency resolution much easier.

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 1.0.0, like so:

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

Also it would be great if you could add a dedicated license file to the root of the repo so clients app can properly acknowledge your work. At the moment I've added the license inline in the specification in accordance to the indications of the readme.

fabiopelosin avatar Mar 11 '13 13:03 fabiopelosin