|
From: Michael R. <mr...@us...> - 2002-01-10 19:26:37
|
Update of /cvsroot/openorb/ConcurrencyControlService/src/main/org/openorb/ccs
In directory usw-pr-cvs1:/tmp/cvs-serv23165/ConcurrencyControlService/src/main/org/openorb/ccs
Modified Files:
ReleaseInfo.java
Log Message:
Updated the version to 1.2.1 in CHANGELOG as well as in ReleaseInfo.
Added the class ReleaseInfo where it was not available yet.
Index: ReleaseInfo.java
===================================================================
RCS file: /cvsroot/openorb/ConcurrencyControlService/src/main/org/openorb/ccs/ReleaseInfo.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- ReleaseInfo.java 2002/01/09 12:24:25 1.1.1.1
+++ ReleaseInfo.java 2002/01/10 19:26:04 1.2
@@ -56,15 +56,16 @@
*/
public class ReleaseInfo extends org.openorb.ReleaseInfo
{
- public final static short OPENORB_CCS_MAJOR = 0;
- public final static short OPENORB_CCS_MINOR = 1;
+ public final static short OPENORB_CCS_MAJOR = 1;
+ public final static short OPENORB_CCS_MINOR = 2;
+ public final static short OPENORB_CCS_MINOR_CHANGE = 1;
public final static String OPENORB_CCS_VERSION = ""+OPENORB_CCS_MAJOR+"."+OPENORB_CCS_MINOR;
public final static String VERSION = OPENORB_CCS_VERSION + " over " + org.openorb.ReleaseInfo.RELEASE;
- public final static String RELEASE = "OpenORB CCS version "+VERSION;
+ public final static String RELEASE = "OpenORB CCS Version "+VERSION;
- public static String RELEASE_TAG = "OpenORB_CCS_" + OPENORB_CCS_MAJOR + "_" + OPENORB_CCS_MINOR + "_" + org.openorb.ReleaseInfo.RELEASE_TAG;
+ public static String RELEASE_TAG = "OpenORB_CCS_" + OPENORB_CCS_MAJOR + "_" + OPENORB_CCS_MINOR + "_" + OPENORB_CCS_MINOR_CHANGE + "_over_" + org.openorb.ReleaseInfo.RELEASE_TAG;
}
|