Skip to content

Commit

Permalink
upgraded version to 2.4.2.GA_CP01
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Mar 26, 2008
1 parent 2805dcf commit 3c3b0a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0"?>

<!-- $Id: build.xml,v 1.71.2.10 2008/02/07 16:49:12 belaban Exp $ -->
<!-- $Id: build.xml,v 1.71.2.11 2008/03/26 15:50:09 belaban Exp $ -->

<project name="JGroups" default="compile" basedir=".">
<description>
Expand Down Expand Up @@ -28,7 +28,7 @@
<property name="build.compiler.emacs" value="true"/>
<property name="javadoc.packages" value="org.jgroups.*"/>
<property name="unittest.timeout.low" value="180000"/>
<property name="version" value="2.4.2"/>
<property name="version" value="2.4.2.GA_CP01"/>

<!-- default properties used in all test targets -->
<property name="channel.conf" value="udp.xml"/>
Expand Down
2 changes: 1 addition & 1 deletion conf/manifest.mf
@@ -1,4 +1,4 @@
Manifest-Version: 1.0
Created-By: Apache Ant 1.5Beta2
Main-Class: org.jgroups.Version
Implementation-Version: 2.4.2
Implementation-Version: 2.4.2.GA_CP01
6 changes: 3 additions & 3 deletions src/org/jgroups/Version.java
Expand Up @@ -13,18 +13,18 @@
* Z = 0-63 for micro versions
*
* @author Bela Ban
* @version $Id: Version.java,v 1.42.2.7 2007/11/02 14:02:15 belaban Exp $
* @version $Id: Version.java,v 1.42.2.8 2008/03/26 15:50:08 belaban Exp $
* Holds version information for JGroups.
*/
public class Version {
public static final short major = 2;
public static final short minor = 4;
public static final short micro = 2;
public static final String description="2.4.2";
public static final String description="2.4.2.GA_CP01";

public static final short version=encode(major, minor, micro);
public static final String string_version=print(version);
public static final String cvs="$Id: Version.java,v 1.42.2.7 2007/11/02 14:02:15 belaban Exp $";
public static final String cvs="$Id: Version.java,v 1.42.2.8 2008/03/26 15:50:08 belaban Exp $";

private static final int MAJOR_SHIFT = 11;
private static final int MINOR_SHIFT = 6;
Expand Down

0 comments on commit 3c3b0a4

Please sign in to comment.