From: Marco Zanon Date: Thu, 22 Oct 2015 12:56:37 +0000 (+0000) Subject: Committed trunk 4.x. Also fixed a copyright notice. X-Git-Tag: 4.0~18 X-Git-Url: https://gitweb.marcozanon.com/?a=commitdiff_plain;h=536b152cb16d7782ce707f5e206daa7ea3701eab;p=Macaco Committed trunk 4.x. Also fixed a copyright notice. --- diff --git a/src/java/com/marcozanon/macaco/MInformation.java b/src/java/com/marcozanon/macaco/MInformation.java index 277f4d3..a7d0a67 100644 --- a/src/java/com/marcozanon/macaco/MInformation.java +++ b/src/java/com/marcozanon/macaco/MInformation.java @@ -12,7 +12,7 @@ import java.io.StringWriter; public class MInformation extends MObject { - public static final String MACACO_VERSION = "3.x"; + public static final String MACACO_VERSION = "4.x"; public static final String TEXT_ENCODING = "UTF-8"; @@ -29,7 +29,7 @@ public class MInformation extends MObject { public static String getMacacoCopyrightInformation() { StringBuilder s = new StringBuilder(""); s.append(MInformation.getMacacoFullName() + System.getProperty("line.separator")); - s.append("Copyright (c) 2009-2013 by Marco Zanon." + System.getProperty("line.separator")); + s.append("Copyright (c) 2009-2015 by Marco Zanon." + System.getProperty("line.separator")); s.append("Released under the MIT license. See LICENSE for additional information." + System.getProperty("line.separator")); s.append("Small portions inspired by other projects or web pages. See source code for additional information."); return s.toString();