Committed trunk 4.x. Also fixed a copyright notice.
authorMarco Zanon <info@marcozanon.com>
Thu, 22 Oct 2015 12:56:37 +0000 (12:56 +0000)
committerMarco Zanon <info@marcozanon.com>
Thu, 22 Oct 2015 12:56:37 +0000 (12:56 +0000)
src/java/com/marcozanon/macaco/MInformation.java

index 277f4d382e103f1cbd16f30c7af1b6cbb024b66a..a7d0a67dfdcccb254282380ac379a7d1cfd47812 100644 (file)
@@ -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();