Skip to content

Commit

Permalink
version = 2.6.3.CR1
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jun 3, 2008
1 parent 2e24817 commit cc129a2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0"?>

<!-- $Id: build.xml,v 1.123.2.11 2008/05/23 04:40:27 belaban Exp $ -->
<!-- $Id: build.xml,v 1.123.2.12 2008/06/03 06:20:36 belaban Exp $ -->

<project name="JGroups" default="compile" basedir=".">
<description>
Expand Down Expand Up @@ -28,7 +28,7 @@
<property name="keystore.dir" value="${root.dir}/keystore"/>
<property name="javadoc.packages" value="org.jgroups.*"/>
<property name="unittest.timeout.low" value="240000"/>
<property name="version" value="2.6.3.GA"/>
<property name="version" value="2.6.3.CR1"/>

<!-- 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.6.3.GA
Implementation-Version: 2.6.3.CR1
2 changes: 1 addition & 1 deletion jgroups-pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>jgroups</groupId>
<artifactId>jgroups</artifactId>
<name>JGroups</name>
<version>2.6.2</version>
<version>2.6.3.CR1</version>
<url>http://www.jgroups.org</url>
<build>
<sourceDirectory>src</sourceDirectory>
Expand Down
8 changes: 4 additions & 4 deletions src/org/jgroups/Version.java
Expand Up @@ -15,19 +15,19 @@
* Z = 0-63 for micro versions
*
* @author Bela Ban
* @version $Id: Version.java,v 1.59.2.3 2008/03/04 12:42:02 belaban Exp $
* @version $Id: Version.java,v 1.59.2.4 2008/06/03 06:20:33 belaban Exp $
* Holds version information for JGroups.
*/
@Immutable
public class Version {
public static final short major = 2;
public static final short minor = 6;
public static final short micro = 2;
public static final String description="2.6.3.GA";
public static final short micro = 3;
public static final String description="2.6.3.CR1";

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.59.2.3 2008/03/04 12:42:02 belaban Exp $";
public static final String cvs="$Id: Version.java,v 1.59.2.4 2008/06/03 06:20:33 belaban Exp $";

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

0 comments on commit cc129a2

Please sign in to comment.