granoff / Lockbox

Objective-C utility class for storing data securely in the key chain.
MIT License
847 stars 87 forks source link

Cocoapods still says 1.4.6 #26

Closed magin closed 10 years ago

granoff commented 10 years ago

Huh. Indeed it does. The most recent tag is 1.4.8 and it is pushed to Github. Not sure what to do here.

rivera-ernesto commented 10 years ago

In order to appear in CocoaPods the *.podspec has to be added to https://github.com/CocoaPods/Specs as well.

E.g. adding 1.4.7/1.4.8: https://github.com/CocoaPods/Specs/pull/10239

Also the podpsec requires a requires_arc flag:

pod spec lint Lockbox.podspec 

 -> Lockbox (1.4.8)
    - WARN  | [iOS] A value for `requires_arc` should be specified until the migration to a `true` default.

Analyzed 1 podspec.
magin commented 10 years ago

Thanks!