My application uses the Cocoa Framework Sparkle to deploy updates. I don't usually deploy beta's of my software but for my next update, I feel like I need to. My question is what is the best numbering strategy for deploying a beta using Sparkle. For anyone who tests my beta I'd like the update to be seamless when I release the next official version, but for other users I'd like the whole system to be totally invisible. I currently use a numbering system like 1.2.3 for my updates.
|
4
|
|
|
|
|
|
The best way is probably to totally disconnect your CFBundleVersion (which must contain only . and numbers, and is used by Sparkle's version comparison and the OS), and CFBundleShortVersionString (which can by anything, and is what users see). Then, you just have to make sure that your CFBundleVersion always increases over time, but can otherwise be anything[*], while you use 1.2.4b and 1.2.4 as the CFBundleStortVersionString for the beta and final releases respectively. As long as the CFBundleVersion for the beta is higher that your current CFBundleVersion, and the CFBundleVersion of the eventual non-beta release is higher than the beta, everything will work out the way you want. [*] Just keep in mind that despite Apple's docs not mentioning it, 9999.99.99 is pretty much the highest version that LaunchServices will recognize, and it will ignore any number blocks beyond the third, so plan to use a scheme that won't even go higher than that; Sparkle updates would still work, but the OS would be confused about which copy was the latest version. |
||
|
|
|
I like to use the Apple versioning tool included with Xcode. It maintains a parallel build number (e.g. 12345) that is distinct from your marketing version number (1.2.3). You invoke it using the command line tool What's more, if you're using Subversion or CVS as your versioning system, this tool has built-in support. For example, which I want to increment my build number, I just enter this in the terminal:
This increments the build number of every target in my application, updates the So what does this have to do with Sparkle? I use the build number as my |
||
|
|
