You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mm...@locus.apache.org on 2000/09/27 17:20:43 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/processor XSLProcessorVersion.java

mmidy       00/09/27 08:20:40

  Modified:    java/src/org/apache/xalan/processor XSLProcessorVersion.java
  Log:
  New processor version
  
  Revision  Changes    Path
  1.2       +4 -4      xml-xalan/java/src/org/apache/xalan/processor/XSLProcessorVersion.java
  
  Index: XSLProcessorVersion.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/processor/XSLProcessorVersion.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XSLProcessorVersion.java	2000/06/19 16:52:14	1.1
  +++ XSLProcessorVersion.java	2000/09/27 15:20:36	1.2
  @@ -76,7 +76,7 @@
      * Version String like <CODE>"<B>Xalan</B>i v.r[.dd| <B>D</B>nn]"</CODE>.
      * <P>Semantics of the version string are identical to the Xerces project.</P>
      */
  -  public static String S_VERSION = "1.1D01";
  +  public static String S_VERSION = "2.0";
   
     /**
      * Constant name of product.
  @@ -99,7 +99,7 @@
      *          of new versions as external interfaces and behaviour
      *          may have changed.
      */
  -  public static int VERSION = 1;
  +  public static int VERSION = 2;
   
     /**
      * Release Number.
  @@ -109,7 +109,7 @@
      *            -  API or behaviour change.
      *            -  its designated as a reference release.
      */
  -  public static int RELEASE = 1;
  +  public static int RELEASE = 0;
   
     /**
      * Maintenance Drop Number.
  @@ -140,5 +140,5 @@
      *          well as defect fixes. 'D' drops may not be as stable as
      *          the final releases.
      */
  -  public static int DEVELOPMENT = 1;
  +  public static int DEVELOPMENT = 0;
   }