summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-01-07 22:35:09 +0100
committerAraq <rumpf_a@web.de>2017-01-07 22:35:09 +0100
commit9c47bb9cc0fda686ca403f5abd0ae2f06d364c74 (patch)
tree01645b454a0ecd0d35300c57aa03219f831d2734
parentfc636e2d12bf354cfb4e8f63b33802ae2fe4ed5f (diff)
downloadNim-9c47bb9cc0fda686ca403f5abd0ae2f06d364c74.tar.gz
happy new year
-rw-r--r--compiler/ccgtypes.nim2
-rw-r--r--compiler/cgen.nim4
-rw-r--r--compiler/debuginfo.nim2
-rw-r--r--compiler/jsgen.nim6
-rw-r--r--compiler/modulegraphs.nim2
-rw-r--r--compiler/packagehandling.nim2
-rw-r--r--compiler/pbraces.nim2
-rw-r--r--compiler/semdata.nim2
-rw-r--r--compiler/sighashes.nim2
-rw-r--r--koch.nim4
10 files changed, 14 insertions, 14 deletions
diff --git a/compiler/ccgtypes.nim b/compiler/ccgtypes.nim
index aa0b983ff..20e6342c3 100644
--- a/compiler/ccgtypes.nim
+++ b/compiler/ccgtypes.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/cgen.nim b/compiler/cgen.nim
index ac0fa3598..e478b07cb 100644
--- a/compiler/cgen.nim
+++ b/compiler/cgen.nim
@@ -852,12 +852,12 @@ proc addIntTypes(result: var Rope) {.inline.} =
 proc getCopyright(cfile: string): Rope =
   if optCompileOnly in gGlobalOptions:
     result = ("/* Generated by Nim Compiler v$1 */$N" &
-        "/*   (c) 2016 Andreas Rumpf */$N" &
+        "/*   (c) 2017 Andreas Rumpf */$N" &
         "/* The generated code is subject to the original license. */$N") %
         [rope(VersionAsString)]
   else:
     result = ("/* Generated by Nim Compiler v$1 */$N" &
-        "/*   (c) 2016 Andreas Rumpf */$N" &
+        "/*   (c) 2017 Andreas Rumpf */$N" &
         "/* The generated code is subject to the original license. */$N" &
         "/* Compiled for: $2, $3, $4 */$N" &
         "/* Command for C compiler:$n   $5 */$N") %
diff --git a/compiler/debuginfo.nim b/compiler/debuginfo.nim
index 7729a6a51..e408a932b 100644
--- a/compiler/debuginfo.nim
+++ b/compiler/debuginfo.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/jsgen.nim b/compiler/jsgen.nim
index cf681d580..50a74464a 100644
--- a/compiler/jsgen.nim
+++ b/compiler/jsgen.nim
@@ -2171,7 +2171,7 @@ proc genHeader(target: TTarget): Rope =
   if target == targetJS:
     result = (
       "/* Generated by the Nim Compiler v$1 */$n" &
-      "/*   (c) 2016 Andreas Rumpf */$n$n" &
+      "/*   (c) 2017 Andreas Rumpf */$n$n" &
       "var framePtr = null;$n" &
       "var excHandler = 0;$n" &
       "var lastJSError = null;$n" &
@@ -2187,7 +2187,7 @@ proc genHeader(target: TTarget): Rope =
   else:
     result = ("<?php$n" &
               "/* Generated by the Nim Compiler v$1 */$n" &
-              "/*   (c) 2016 Andreas Rumpf */$n$n" &
+              "/*   (c) 2017 Andreas Rumpf */$n$n" &
               "$$framePtr = null;$n" &
               "$$excHandler = 0;$n" &
               "$$lastJSError = null;$n") %
@@ -2246,7 +2246,7 @@ proc genClass(obj: PType; content: Rope; ext: string) =
     else: nil
   let result = ("<?php$n" &
             "/* Generated by the Nim Compiler v$# */$n" &
-            "/*   (c) 2016 Andreas Rumpf */$n$n" &
+            "/*   (c) 2017 Andreas Rumpf */$n$n" &
             "require_once \"nimsystem.php\";$n" &
             "class $#$# {$n$#$n}$n") %
            [rope(VersionAsString), cls, extends, content]
diff --git a/compiler/modulegraphs.nim b/compiler/modulegraphs.nim
index d22160b3b..466e12e64 100644
--- a/compiler/modulegraphs.nim
+++ b/compiler/modulegraphs.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/packagehandling.nim b/compiler/packagehandling.nim
index 6a98ffe60..758411e39 100644
--- a/compiler/packagehandling.nim
+++ b/compiler/packagehandling.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/pbraces.nim b/compiler/pbraces.nim
index df9204be6..b59fbc6cf 100644
--- a/compiler/pbraces.nim
+++ b/compiler/pbraces.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/semdata.nim b/compiler/semdata.nim
index 641dc3304..20fd1d9be 100644
--- a/compiler/semdata.nim
+++ b/compiler/semdata.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/compiler/sighashes.nim b/compiler/sighashes.nim
index 4883479fa..78d245a97 100644
--- a/compiler/sighashes.nim
+++ b/compiler/sighashes.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nim Compiler
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
diff --git a/koch.nim b/koch.nim
index d5b756420..23c6fac52 100644
--- a/koch.nim
+++ b/koch.nim
@@ -1,7 +1,7 @@
 #
 #
 #         Maintenance program for Nim
-#        (c) Copyright 2016 Andreas Rumpf
+#        (c) Copyright 2017 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
@@ -30,7 +30,7 @@ const
 +-----------------------------------------------------------------+
 |         Maintenance program for Nim                             |
 |             Version $1|
-|             (c) 2016 Andreas Rumpf                              |
+|             (c) 2017 Andreas Rumpf                              |
 +-----------------------------------------------------------------+
 Build time: $2, $3