Skip to content

Commit

Permalink
Update version information for 2.6.11.GA
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmatowicz committed Jul 17, 2009
1 parent efc2fb2 commit 1a972f1
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,13 +1,13 @@
<?xml version="1.0"?>

<!-- $Id: build.xml,v 1.123.2.36 2009/07/14 23:39:19 rachmatowicz Exp $ -->
<!-- $Id: build.xml,v 1.123.2.37 2009/07/17 00:46:39 rachmatowicz Exp $ -->

<project name="JGroups" default="compile" basedir=".">
<description>
build.xml file for JGroups. Needs Ant (jakarta.apache.org) to run
</description>

<property name="version" value="2.6.10.GA"/>
<property name="version" value="2.6.11.GA"/>
<property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/>
<property name="root.dir" value="${basedir}"/>
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.10.GA
Implementation-Version: 2.6.11.GA
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.10.GA</version>
<version>2.6.11.GA</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.18 2009/04/28 14:25:33 vlada Exp $
* @version $Id: Version.java,v 1.59.2.19 2009/07/17 00:46:38 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 = 10;
public static final String description="2.6.10.GA";
public static final short micro = 11;
public static final String description="2.6.11.GA";

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.18 2009/04/28 14:25:33 vlada Exp $";
public static final String cvs="$Id: Version.java,v 1.59.2.19 2009/07/17 00:46:38 rachmatowicz Exp $";

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

0 comments on commit 1a972f1

Please sign in to comment.