Skip to content

Commit

Permalink
2.6.15
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Apr 30, 2010
1 parent b6c2c2e commit e5b2bd2
Showing 1 changed file with 3 additions and 3 deletions.
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.59.2.29 2010/04/01 11:39:50 belaban Exp $
* @version $Id: Version.java,v 1.59.2.30 2010/04/30 12:15:07 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 = 14;
public static final short micro = 15;
public static final String description="2.6.15.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.29 2010/04/01 11:39:50 belaban Exp $";
public static final String cvs="$Id: Version.java,v 1.59.2.30 2010/04/30 12:15:07 belaban Exp $";

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

0 comments on commit e5b2bd2

Please sign in to comment.