alekseyn / EasyTableView

Horizontal and vertical scrolling table views for iOS
BSD 3-Clause "New" or "Revised" License
584 stars 157 forks source link

Semantic version tags #22

Closed yas375 closed 11 years ago

yas375 commented 12 years ago

I’ve recently added EasyTableView 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, EasyTableView 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
alekseyn commented 12 years ago

Done!

yas375 commented 12 years ago

Cool! Thank you! I will update podspec for your project in next few days. Or if you have enough time and desire so you could do it yourself and send pull request to cocoapods/spec repo ;)

alekseyn commented 11 years ago

Sorry it's been awhile. What URL should I use for the pull request?

yas375 commented 11 years ago

Hi @alekseyn! Sorry for delay! (

You can create a spec for your library and send pull request to master branch of CocoaPods/Specs repo.

Here is a good free screencast which demonstrates how to create and submit a spec: http://nsscreencast.com/episodes/28-creating-a-cocoapod And here is a text instructions for contributing: https://github.com/CocoaPods/CocoaPods/wiki/Contributing-to-the-master-repo

Thank you!