Author: manik.surtani(a)jboss.com
Date: 2008-10-08 04:22:02 -0400 (Wed, 08 Oct 2008)
New Revision: 6855
Modified:
core/branches/flat/src/main/java/org/jboss/cache/Version.java
Log:
Updated version info
Modified: core/branches/flat/src/main/java/org/jboss/cache/Version.java
===================================================================
--- core/branches/flat/src/main/java/org/jboss/cache/Version.java 2008-10-07 16:22:07 UTC
(rev 6854)
+++ core/branches/flat/src/main/java/org/jboss/cache/Version.java 2008-10-08 08:22:02 UTC
(rev 6855)
@@ -32,11 +32,28 @@
@Immutable
public class Version
{
- public static final String version = "3.0.0-SNAPSHOT";
- public static final String codename = "Naga";
+ public static final String version = "1.0-SNAPSHOT";
+ public static final String codename = "Starobrno";
//public static final String cvs = "$Id: Version.java 4592 2007-10-10 16:44:36Z
manik.surtani(a)jboss.com $";
- static final byte[] version_id = {'0', '3', '0', '0',
'S'};
-
+ static final byte[] version_id = {'0', '1', '0', '0',
'S'};
+ static final String art = " ____ __
\n" +
+ "/\\ _`\\ __ /\\ \\__ \n" +
+ "\\ \\ \\L\\ \\_ __ ___ /\\_\\ __ ___\\ \\ ,_\\ \n" +
+ " \\ \\ ,__/\\`'__\\/ __`\\\\/\\ \\ /'__`\\ /'___\\ \\ \\/
\n" +
+ " \\ \\ \\/\\ \\ \\//\\ \\L\\ \\\\ \\ \\/\\ __//\\ \\__/\\ \\ \\_
\n" +
+ " \\ \\_\\ \\ \\_\\\\ \\____/_\\ \\ \\ \\____\\ \\____\\\\ \\__\\\n"
+
+ " \\/_/ \\/_/ \\/___//\\ \\_\\ \\/____/\\/____/ \\/__/\n" +
+ " \\ \\____/ \n" +
+ " \\/___/ \n" +
+ " ____ __ __
\n" +
+ "/\\ _`\\ /\\ \\__ /\\ \\
\n" +
+ "\\ \\,\\L\\_\\ \\ ,_\\ __ _ __ ___\\ \\ \\____ _ __ ___
___ \n" +
+ " \\/_\\__ \\\\ \\ \\/ /'__`\\ /\\`'__\\/ __`\\ \\
'__`\\/\\`'__\\/' _ `\\ / __`\\ \n" +
+ " /\\ \\L\\ \\ \\ \\_/\\ \\L\\.\\_\\ \\ \\//\\ \\L\\ \\ \\ \\L\\ \\ \\
\\/ /\\ \\/\\ \\/\\ \\L\\ \\\n" +
+ " \\ `\\____\\ \\__\\ \\__/.\\_\\\\ \\_\\\\ \\____/\\ \\_,__/\\ \\_\\ \\
\\_\\ \\_\\ \\____/\n" +
+ " \\/_____/\\/__/\\/__/\\/_/ \\/_/ \\/___/ \\/___/ \\/_/
\\/_/\\/_/\\/___/ \n" +
+ "
\n" +
+ "
";
private static final int MAJOR_SHIFT = 11;
private static final int MINOR_SHIFT = 6;
private static final int MAJOR_MASK = 0x00f800;
@@ -51,6 +68,8 @@
*/
public static void main(String[] args)
{
+ System.out.println(art);
+ System.out.println();
System.out.println("\nVersion: \t" + version);
System.out.println("Codename: \t" + codename);
//System.out.println("CVS: \t" + cvs);
Show replies by date