Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Oct 29, 2010
1 parent 0564c5b commit af45013
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0"?>

<!-- $Id: build.xml,v 1.261 2010/10/27 15:10:35 belaban Exp $ -->
<!-- $Id: build.xml,v 1.262 2010/10/29 12:02:08 belaban 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.11.0.Beta3"/>
<property name="version" value="2.11.0.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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Manifest-Version: 1.0
Created-By: Apache Ant 1.6.5
Main-Class: org.jgroups.Version
Implementation-Version: 2.11.0.Beta3
Implementation-Version: 2.11.0.GA
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>jgroups</artifactId>
<packaging>jar</packaging>
<name>JGroups</name>
<version>2.11.0.Beta3</version>
<version>2.11.0.GA</version>
<url>http://www.jgroups.org</url>
<description>
Reliable cluster communication toolkit
Expand Down
6 changes: 3 additions & 3 deletions src/org/jgroups/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
* Z = 0-63 for micro versions
*
* @author Bela Ban
* @version $Id: Version.java,v 1.109 2010/10/27 15:10:33 belaban Exp $
* @version $Id: Version.java,v 1.110 2010/10/29 12:02:06 belaban Exp $
* Holds version information for JGroups.
*/
@Immutable
public class Version {
public static final short major = 2;
public static final short minor = 11;
public static final short micro = 0;
public static final String description="2.11.0.Beta3";
public static final String description="2.11.0.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.109 2010/10/27 15:10:33 belaban Exp $";
public static final String cvs="$Id: Version.java,v 1.110 2010/10/29 12:02:06 belaban Exp $";

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

0 comments on commit af45013

Please sign in to comment.