Update of /cvsroot/jython/jython/org/python/core
In directory usw-pr-cvs1:/tmp/cvs-serv20481
Modified Files:
PySystemState.java
Log Message:
Post 2.1 version number.
Index: PySystemState.java
===================================================================
RCS file: /cvsroot/jython/jython/org/python/core/PySystemState.java,v
retrieving revision 2.74
retrieving revision 2.75
diff -C2 -d -r2.74 -r2.75
*** PySystemState.java 2001/12/31 11:18:18 2.74
--- PySystemState.java 2002/01/06 15:50:22 2.75
***************
*** 18,27 ****
* The current version of JPython.
*/
! public static String version = "2.1";
private static int PY_MAJOR_VERSION = 2;
! private static int PY_MINOR_VERSION = 1;
private static int PY_MICRO_VERSION = 0;
! private static int PY_RELEASE_LEVEL = 0xF;
private static int PY_RELEASE_SERIAL = 0;
--- 18,27 ----
* The current version of JPython.
*/
! public static String version = "2.1+";
private static int PY_MAJOR_VERSION = 2;
! private static int PY_MINOR_VERSION = 2;
private static int PY_MICRO_VERSION = 0;
! private static int PY_RELEASE_LEVEL = 0xA;
private static int PY_RELEASE_SERIAL = 0;
|