As suspected by @MKleusberg in #56, our OSX .app application bundle is reporting the wrong version number.
In both the master and sqlb-3.2.x branches, it's still set to 3.1 in src/app.plist:
<key>CFBundleShortVersionString</key>
<string>3.1</string>
<key>CFBundleVersion</key>
<string>3.1</string>
The fix for 3.2 branch is pretty obvious "3.2". Any thoughts on what we should use for the master branch though? Only integer and period characters are allowed (no "dev" or similar words):
https://developer.apple.com/library/ios/documentation/general/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102364
Perhaps "3.2.99", so it's numerically less than the "3.3" that will be our next release?
Also, we should probably add an update step for this to our release process. 😄
Reactions are currently unavailable
As suspected by @MKleusberg in #56, our OSX .app application bundle is reporting the wrong version number.
In both the master and sqlb-3.2.x branches, it's still set to 3.1 in src/app.plist:
<key>CFBundleShortVersionString</key> <string>3.1</string> <key>CFBundleVersion</key> <string>3.1</string>The fix for 3.2 branch is pretty obvious "3.2". Any thoughts on what we should use for the master branch though? Only integer and period characters are allowed (no "dev" or similar words):
https://developer.apple.com/library/ios/documentation/general/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102364
Perhaps "3.2.99", so it's numerically less than the "3.3" that will be our next release?
Also, we should probably add an update step for this to our release process. 😄