Hartmut Goebel píše v Út 10. 05. 2011 v 10:25 +0200: > Am 10.05.2011 10:01, schrieb Martin Zibricky: > > We could do the following: > > - use '--version' and '-v' to display version string of pyinstaller > +1
> > - for version resource use options '--version-file' and '-V' > +0 what other option name would be more appropriate? Only the long option? > > - use release numbering > > - regular release: 1.6.0, 1.5.1, etc. > > - release candidate: 1.6.0-rc1, 1.6.0-rc2 > > - development version in svn: 1.6.0-dev (before releasing 1.6.0 > +1, but versions should not contain a dash, as AFAIK is the Python > convention. Thus 1.6.0rc1 and 1.6.0dev would be correct. > > BTW: Do we really need the third digit? IMHO 1.6 should be okay until > we > need to release a patched version. You are right, jut 1.6 should be ok. I would like to have the following variables for holding version number: PyInstaller.VERSION = '1.6dev' PyInstaller.__version__ = (1, 6, 0, 'dev') For creating documentation this version variable could be used and thus we will always update version only at one place. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
