From: Kevin A. <ka...@us...> - 2004-10-19 22:19:24
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8998 Modified Files: __version__.py Log Message: updated to 0.8.2 for next release Index: __version__.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/__version__.py,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** __version__.py 3 Oct 2004 19:42:08 -0000 1.38 --- __version__.py 19 Oct 2004 22:19:14 -0000 1.39 *************** *** 2,10 **** Created: 2001/08/03 Purpose: When a new release is made, a tag will be created in the cvs tree ! and the ver string below will be updated to match the tag and .zip release file posted. For example: ! tag: proto-0_2 ! release file on SourceForge: proto-0.2.zip __version__ = "$Revision$" --- 2,10 ---- Created: 2001/08/03 Purpose: When a new release is made, a tag will be created in the cvs tree ! and the VERSION below will be updated to match the tag and .zip release file posted. For example: ! tag: release_0_8_1 ! release file on SourceForge: PythonCard-0.8.1.zip __version__ = "$Revision$" *************** *** 13,16 **** """ ! VERSION = (0, 8, 1) VERSION_STRING = ".".join([str(digit) for digit in VERSION]) --- 13,16 ---- """ ! VERSION = (0, 8, 2) VERSION_STRING = ".".join([str(digit) for digit in VERSION]) |