1 package com.csss.opensource.jhexdump; 2 3 /*** 4 * This class provides version information for this release 5 * <p> 6 * <ul>Change Log 7 * <li>v 1.1 - Changed the implentation so that he core JHexDump don't buffer 8 * but act as a "Reader"</li> 9 * <li>v 1.0.1 - Improved JavaDocs</li> 10 * <li>v 1.0 - Initial release</li> 11 * </ul> 12 * @author Lee Walton - <a href="http://www.jzone.co.uk/">The jZone</a> 13 * @version 1.1 14 */ 15 public class Version { 16 17 /*** 18 * Release copyright string 19 */ 20 public static final String COPYRIGHT = "(C) 2003 C/S Software Solutions Ltd"; 21 22 /*** 23 * Release version number 24 */ 25 public static final String VERSION = "1.1"; 26 }