Skip to content

Commit

Permalink
Update version numbers for 2.6.0 cr-1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmatowicz committed Oct 26, 2007
1 parent 05fabfb commit c769540
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.120 2007/10/25 23:25:23 rachmatowicz Exp $ -->
<!-- $Id: build.xml,v 1.121 2007/10/26 21:34:01 rachmatowicz 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="180000"/>
<property name="version" value="2.6.0-beta-1"/>
<property name="version" value="2.6.0-cr-1"/>

<!-- 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.0-beta-1
Implementation-Version: 2.6.0-cr-1
6 changes: 3 additions & 3 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.57 2007/09/20 07:43:56 belaban Exp $
* @version $Id: Version.java,v 1.58 2007/10/26 21:34:01 rachmatowicz 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 = 0;
public static final String description="2.6.0 beta-1";
public static final String description="2.6.0 cr-1";

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.57 2007/09/20 07:43:56 belaban Exp $";
public static final String cvs="$Id: Version.java,v 1.58 2007/10/26 21:34:01 rachmatowicz Exp $";

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

0 comments on commit c769540

Please sign in to comment.