Skip to content

Commit

Permalink
prepare for 2.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Blagojevic committed Feb 19, 2009
1 parent 7ca48ae commit ada63f2
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 Original file line Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0"?> <?xml version="1.0"?>


<!-- $Id: build.xml,v 1.123.2.30 2009/02/09 17:43:12 vlada Exp $ --> <!-- $Id: build.xml,v 1.123.2.31 2009/02/19 13:03:11 vlada Exp $ -->


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


<property name="version" value="2.6.8.CR1"/> <property name="version" value="2.6.8.GA"/>
<property name="build.properties.file" value="build.properties"/> <property name="build.properties.file" value="build.properties"/>
<property file="${build.properties.file}"/> <property file="${build.properties.file}"/>
<property name="root.dir" value="${basedir}"/> <property name="root.dir" value="${basedir}"/>
Expand Down
2 changes: 1 addition & 1 deletion conf/manifest.mf
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Created-By: Apache Ant 1.5Beta2 Created-By: Apache Ant 1.5Beta2
Main-Class: org.jgroups.Version Main-Class: org.jgroups.Version
Implementation-Version: 2.6.8.CR1 Implementation-Version: 2.6.8.GA
2 changes: 1 addition & 1 deletion jgroups-pom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>jgroups</groupId> <groupId>jgroups</groupId>
<artifactId>jgroups</artifactId> <artifactId>jgroups</artifactId>
<name>JGroups</name> <name>JGroups</name>
<version>2.6.8.CR1</version> <version>2.6.8.GA</version>
<url>http://www.jgroups.org</url> <url>http://www.jgroups.org</url>
<build> <build>
<sourceDirectory>src</sourceDirectory> <sourceDirectory>src</sourceDirectory>
Expand Down
6 changes: 3 additions & 3 deletions src/org/jgroups/Version.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@
* Z = 0-63 for micro versions * Z = 0-63 for micro versions
* *
* @author Bela Ban * @author Bela Ban
* @version $Id: Version.java,v 1.59.2.15 2009/02/09 17:43:08 vlada Exp $ * @version $Id: Version.java,v 1.59.2.16 2009/02/19 13:03:09 vlada Exp $
* Holds version information for JGroups. * Holds version information for JGroups.
*/ */
@Immutable @Immutable
public class Version { public class Version {
public static final short major = 2; public static final short major = 2;
public static final short minor = 6; public static final short minor = 6;
public static final short micro = 8; public static final short micro = 8;
public static final String description="2.6.8.CR1"; public static final String description="2.6.8.GA";


public static final short version=encode(major, minor, micro); public static final short version=encode(major, minor, micro);
public static final String string_version=print(version); public static final String string_version=print(version);
public static final String cvs="$Id: Version.java,v 1.59.2.15 2009/02/09 17:43:08 vlada Exp $"; public static final String cvs="$Id: Version.java,v 1.59.2.16 2009/02/19 13:03:09 vlada Exp $";


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

0 comments on commit ada63f2

Please sign in to comment.